nfsd4: typo logical vs bitwise negate in nfsd4_decode_share_access

Signed-off-by: Benny Halevy <bhalevy@tonian.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
Benny Halevy 2011-10-27 20:43:01 +02:00 committed by J. Bruce Fields
parent 345c284290
commit fc0d14fe2d
1 changed files with 1 additions and 1 deletions

View File

@ -655,7 +655,7 @@ static __be32 nfsd4_decode_share_access(struct nfsd4_compoundargs *argp, u32 *x)
default:
return nfserr_bad_xdr;
}
w &= !NFS4_SHARE_ACCESS_MASK;
w &= ~NFS4_SHARE_ACCESS_MASK;
if (!w)
return nfs_ok;
if (!argp->minorversion)