svn commit: r330441 - head/usr.sbin/rpcbind

Hiroki Sato hrs at FreeBSD.org
Mon Mar 5 03:34:02 UTC 2018


Author: hrs
Date: Mon Mar  5 03:34:01 2018
New Revision: 330441
URL: https://svnweb.freebsd.org/changeset/base/330441

Log:
  Partially back out changes in r327464.  stdlib.h is used when
  RPCBIND_DEBUG is enabled.

Modified:
  head/usr.sbin/rpcbind/rpcb_svc.c

Modified: head/usr.sbin/rpcbind/rpcb_svc.c
==============================================================================
--- head/usr.sbin/rpcbind/rpcb_svc.c	Mon Mar  5 02:32:23 2018	(r330440)
+++ head/usr.sbin/rpcbind/rpcb_svc.c	Mon Mar  5 03:34:01 2018	(r330441)
@@ -48,6 +48,9 @@
 #include <rpc/rpcb_prot.h>
 #include <netconfig.h>
 #include <stdio.h>
+#ifdef RPCBIND_DEBUG
+#include <stdlib.h>
+#endif
 #include <string.h>
 
 #include "rpcbind.h"


More information about the svn-src-head mailing list