diff options
author | J. Bruce Fields <bfields@redhat.com> | 2012-06-05 16:52:06 -0400 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2012-08-10 00:24:39 +0100 |
commit | bab9409a251e351bf1a2c1c62cdad22691f32668 (patch) | |
tree | 0e92bba03cc7182be4d9e37a54f325f285ea7272 /fs/nfsd | |
parent | 492ef8589a3622b8c5d58b37d539cfa381c1b118 (diff) | |
download | linux-rt-bab9409a251e351bf1a2c1c62cdad22691f32668.tar.gz |
nfsd4: our filesystems are normally case sensitive
commit 2930d381d22b9c56f40dd4c63a8fa59719ca2c3c upstream.
Actually, xfs and jfs can optionally be case insensitive; we'll handle
that case in later patches.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
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 9cfa60ae4bc3..87a1746278ec 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -2236,7 +2236,7 @@ out_acl: if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) { if ((buflen -= 4) < 0) goto out_resource; - WRITE32(1); + WRITE32(0); } if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) { if ((buflen -= 4) < 0) |