From owner-svn-src-all@freebsd.org Mon Mar 5 03:34:02 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D11EF2ABE8; Mon, 5 Mar 2018 03:34:02 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E04F2800B4; Mon, 5 Mar 2018 03:34:01 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DA2FC1E8CB; Mon, 5 Mar 2018 03:34:01 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w253Y18h071836; Mon, 5 Mar 2018 03:34:01 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w253Y1Rq071835; Mon, 5 Mar 2018 03:34:01 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201803050334.w253Y1Rq071835@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Mon, 5 Mar 2018 03:34:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r330441 - head/usr.sbin/rpcbind X-SVN-Group: head X-SVN-Commit-Author: hrs X-SVN-Commit-Paths: head/usr.sbin/rpcbind X-SVN-Commit-Revision: 330441 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2018 03:34:02 -0000 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 #include #include +#ifdef RPCBIND_DEBUG +#include +#endif #include #include "rpcbind.h"