svn commit: r327007 - head/sys/fs/nfs

John Baldwin jhb at FreeBSD.org
Tue Dec 19 22:43:40 UTC 2017


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:


More information about the svn-src-all mailing list