Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Dec 2017 22:43:39 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r327007 - head/sys/fs/nfs
Message-ID:  <201712192243.vBJMhd2x067490@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Tue Dec 19 22:43:39 2017
New Revision: 327007
URL: https://svnweb.freebsd.org/changeset/base/327007

Log:
  Replace one more LINK_MAX with NFS_LINK_MAX missed in r326991.
  
  Sponsored by:	Chelsio Communications

Modified:
  head/sys/fs/nfs/nfs_commonsubs.c

Modified: head/sys/fs/nfs/nfs_commonsubs.c
==============================================================================
--- head/sys/fs/nfs/nfs_commonsubs.c	Tue Dec 19 22:40:54 2017	(r327006)
+++ head/sys/fs/nfs/nfs_commonsubs.c	Tue Dec 19 22:43:39 2017	(r327007)
@@ -2301,7 +2301,7 @@ nfsv4_fillattr(struct nfsrv_descript *nd, struct mount
 			break;
 		case NFSATTRBIT_MAXLINK:
 			NFSM_BUILD(tl, u_int32_t *, NFSX_UNSIGNED);
-			*tl = txdr_unsigned(LINK_MAX);
+			*tl = txdr_unsigned(NFS_LINK_MAX);
 			retnum += NFSX_UNSIGNED;
 			break;
 		case NFSATTRBIT_MAXNAME:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712192243.vBJMhd2x067490>