diff options
author | J. Bruce Fields <bfields@redhat.com> | 2012-06-05 16:52:06 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-07-10 15:20:57 -0400 |
commit | 2930d381d22b9c56f40dd4c63a8fa59719ca2c3c (patch) | |
tree | 63cfd2ae963c083fa0a82cd8f2424a920e6456d7 | |
parent | 4af825041b06c2ef9b5933288267a11e029eb360 (diff) |
nfsd4: our filesystems are normally case sensitive
Actually, xfs and jfs can optionally be case insensitive; we'll handle
that case in later patches.
Cc: stable@vger.kernel.org
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-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 4949667c84ea..6322df36031f 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c | |||
@@ -2259,7 +2259,7 @@ out_acl: | |||
2259 | if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) { | 2259 | if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) { |
2260 | if ((buflen -= 4) < 0) | 2260 | if ((buflen -= 4) < 0) |
2261 | goto out_resource; | 2261 | goto out_resource; |
2262 | WRITE32(1); | 2262 | WRITE32(0); |
2263 | } | 2263 | } |
2264 | if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) { | 2264 | if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) { |
2265 | if ((buflen -= 4) < 0) | 2265 | if ((buflen -= 4) < 0) |