Skip to content

Commit f0f5dcc

Browse files
J. Bruce Fieldsgregkh
authored andcommitted
nfsd4: our filesystems are normally case sensitive
commit 2930d38 upstream. Actually, xfs and jfs can optionally be case insensitive; we'll handle that case in later patches. Signed-off-by: J. Bruce Fields <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent a647f0d commit f0f5dcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/nfsd/nfs4xdr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2233,7 +2233,7 @@ nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
22332233
if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
22342234
if ((buflen -= 4) < 0)
22352235
goto out_resource;
2236-
WRITE32(1);
2236+
WRITE32(0);
22372237
}
22382238
if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
22392239
if ((buflen -= 4) < 0)

0 commit comments

Comments
 (0)