aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Macklem <rmacklem@FreeBSD.org>2026-01-21 01:32:23 +0000
committerRick Macklem <rmacklem@FreeBSD.org>2026-01-21 01:32:23 +0000
commit053449fa5c6c9fdbff1d1014482a5842bc860811 (patch)
tree80224a7b1539c2ea25f01ce55c6ef9e9152ebddc
parentf2155a6fb5681c3dca4524a3b2b862a72218a541 (diff)
nfscl: Fix the build
Fixes: f2155a6fb568 ("nfscl: Fix handling of case insensitive file systems")
-rw-r--r--sys/fs/nfsclient/nfs_clrpcops.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/fs/nfsclient/nfs_clrpcops.c b/sys/fs/nfsclient/nfs_clrpcops.c
index 0213534d9230..974d08611a00 100644
--- a/sys/fs/nfsclient/nfs_clrpcops.c
+++ b/sys/fs/nfsclient/nfs_clrpcops.c
@@ -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;