Skip to content

Commit

Permalink
Merge branch 'for-3.2' of git://linux-nfs.org/~bfields/linux
Browse files Browse the repository at this point in the history
* 'for-3.2' of git://linux-nfs.org/~bfields/linux:
  nfsd4: typo logical vs bitwise negate in nfsd4_decode_share_access
  • Loading branch information
Linus Torvalds committed Nov 2, 2011
2 parents f7e8011 + fc0d14f commit 06ef93e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/nfsd/nfs4xdr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 06ef93e

Please sign in to comment.