diff options
| author | Steve French <sfrench@us.ibm.com> | 2006-06-04 22:21:07 +0000 | 
|---|---|---|
| committer | Steve French <sfrench@us.ibm.com> | 2006-06-04 22:21:07 +0000 | 
| commit | 9312f6754d4b2d3ce27c21b16fb92923ce92a411 (patch) | |
| tree | 7d4edbc90495ec52bfd568064a4a46e8309b3c7d /fs/cifs/cifs_debug.c | |
| parent | 254e55ed03e2e8d23089b4a468eec2fd2e1ead9b (diff) | |
[CIFS] Fix mask so can set new cifs security flags properly
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifs_debug.c')
| -rw-r--r-- | fs/cifs/cifs_debug.c | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c index 7c0015a96959..2f55edf2eeea 100644 --- a/fs/cifs/cifs_debug.c +++ b/fs/cifs/cifs_debug.c @@ -860,8 +860,6 @@ security_flags_write(struct file *file, const char __user *buffer,  	char flags_string[12];  	char c; -	cERROR(1,("size %ld",count)); /* BB removeme BB */ -  	if((count < 1) || (count > 11))  		return -EINVAL; @@ -883,14 +881,14 @@ security_flags_write(struct file *file, const char __user *buffer,  	flags = simple_strtoul(flags_string, NULL, 0); -	cERROR(1,("sec flags 0x%x", flags));  /* BB FIXME make cFYI */ +	cFYI(1,("sec flags 0x%x", flags));  	if(flags <= 0)  {  		cERROR(1,("invalid security flags %s",flags_string));  		return -EINVAL;  	} -	if((flags & CIFSSEC_MASK) != CIFSSEC_MASK) { +	if(flags & ~CIFSSEC_MASK) {  		cERROR(1,("attempt to set unsupported security flags 0x%d",  			flags & ~CIFSSEC_MASK));  		return -EINVAL; | 
