nfscl: Fix the build

Fixes:	f2155a6fb5 ("nfscl: Fix handling of case insensitive file systems")
This commit is contained in:
Rick Macklem
2026-01-20 17:32:23 -08:00
parent f2155a6fb5
commit 053449fa5c
+2 -1
View File
@@ -5070,7 +5070,8 @@ nfsrpc_statfs(vnode_t vp, struct nfsstatfs *sbp, struct nfsfsinfo *fsp,
}
/* Try and find out if the server fs is case-insensitive. */
error = nfsrpc_pathconf(vp, &pc, NULL, NULL, cred, p, &na, &attrflag);
error = nfsrpc_pathconf(vp, &pc, NULL, NULL, cred, p, &na, &attrflag,
NULL);
if (error == 0 && pc.pc_caseinsensitive != 0) {
NFSLOCKMNT(nmp);
nmp->nm_state |= NFSSTA_CASEINSENSITIVE;