Date: Wed, 21 Jan 2026 01:34:41 +0000 From: Rick Macklem <rmacklem@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 053449fa5c6c - main - nfscl: Fix the build Message-ID: <69702d31.fe4c.4a9785a8@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by rmacklem: URL: https://cgit.FreeBSD.org/src/commit/?id=053449fa5c6c9fdbff1d1014482a5842bc860811 commit 053449fa5c6c9fdbff1d1014482a5842bc860811 Author: Rick Macklem <rmacklem@FreeBSD.org> AuthorDate: 2026-01-21 01:32:23 +0000 Commit: Rick Macklem <rmacklem@FreeBSD.org> CommitDate: 2026-01-21 01:32:23 +0000 nfscl: Fix the build Fixes: f2155a6fb568 ("nfscl: Fix handling of case insensitive file systems") --- 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 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;home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69702d31.fe4c.4a9785a8>
