Replace one more LINK_MAX with NFS_LINK_MAX missed in r326991.

Sponsored by:	Chelsio Communications
This commit is contained in:
John Baldwin 2017-12-19 22:43:39 +00:00
parent f83f3d7986
commit 5538424353

View file

@ -2301,7 +2301,7 @@ nfsv4_fillattr(struct nfsrv_descript *nd, struct mount *mp, vnode_t vp,
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: