diff options
author | Benny Halevy <bhalevy@tonian.com> | 2011-10-27 20:43:01 +0200 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-11-01 18:06:43 -0400 |
commit | fc0d14fe2d6403eb21202fd0c1cf67cd2c85ca67 (patch) | |
tree | e116eb2361e9c173724ce37df765cb4ea5f39ec4 /fs/nfsd | |
parent | 345c284290cabb5484df909303e73d6def8ec8ec (diff) |
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>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/nfs4xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index 66d095d7955e..b6fa792d6b85 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -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) |