summaryrefslogtreecommitdiff
path: root/usr.sbin/rpcbind
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2016-05-02 02:15:05 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2016-05-02 02:15:05 +0000
commite9fc928faa27adcec578875da43c8225af599b95 (patch)
tree07eae9774c70b81f34b92487babe62a3c7c26a01 /usr.sbin/rpcbind
parent6e560add61beb9de31ada2ea8be3b6991418cf3e (diff)
downloadsrc-test2-e9fc928faa27adcec578875da43c8225af599b95.tar.gz
src-test2-e9fc928faa27adcec578875da43c8225af599b95.zip
Notes
Diffstat (limited to 'usr.sbin/rpcbind')
-rw-r--r--usr.sbin/rpcbind/rpcb_svc_com.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/rpcbind/rpcb_svc_com.c b/usr.sbin/rpcbind/rpcb_svc_com.c
index 2ee2a4c7d87e..5c6b8dddc71b 100644
--- a/usr.sbin/rpcbind/rpcb_svc_com.c
+++ b/usr.sbin/rpcbind/rpcb_svc_com.c
@@ -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? */