git: 79b28bc8d1b4 - stable/15 - nfscl: Fix the build

From: Rick Macklem <rmacklem_at_FreeBSD.org>
Date: Thu, 05 Feb 2026 19:56:35 UTC
The branch stable/15 has been updated by rmacklem:

URL: https://cgit.FreeBSD.org/src/commit/?id=79b28bc8d1b42775d7a6f107b34f37e60dfabce8

commit 79b28bc8d1b42775d7a6f107b34f37e60dfabce8
Author:     Rick Macklem <rmacklem@FreeBSD.org>
AuthorDate: 2026-01-21 01:32:23 +0000
Commit:     Rick Macklem <rmacklem@FreeBSD.org>
CommitDate: 2026-02-05 19:55:42 +0000

    nfscl: Fix the build
    
    (cherry picked from commit 053449fa5c6c9fdbff1d1014482a5842bc860811)
---
 sys/fs/nfsclient/nfs_clrpcops.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sys/fs/nfsclient/nfs_clrpcops.c b/sys/fs/nfsclient/nfs_clrpcops.c
index a0423ab23111..9c86e0696153 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;