rpcbind: use our roundup() macro when available through <sys/param.h>.

No functional change.
This commit is contained in:
Pedro F. Giffuni 2016-05-02 02:15:05 +00:00
parent 6e560add61
commit e9fc928faa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298914

View File

@ -634,7 +634,7 @@ rpcbproc_callit_com(struct svc_req *rqstp, SVCXPRT *transp,
/*
* Should be multiple of 4 for XDR.
*/
sendsz = ((sendsz + 3) / 4) * 4;
sendsz = roundup(sendsz, 4);
if (sendsz > RPC_BUF_MAX) {
#ifdef notyet
buf_alloc = alloca(sendsz); /* not in IDR2? */