From owner-svn-src-head@FreeBSD.ORG Wed Oct 23 18:40:59 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3A678F35; Wed, 23 Oct 2013 18:40:59 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 139F12467; Wed, 23 Oct 2013 18:40:59 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id A6B35B94F; Wed, 23 Oct 2013 14:40:57 -0400 (EDT) From: John Baldwin To: Gleb Smirnoff Subject: Re: svn commit: r256962 - head/sys/netinet Date: Wed, 23 Oct 2013 14:29:11 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.4-CBSD-20130906; KDE/4.5.5; amd64; ; ) References: <201310231322.r9NDMo1U085514@svn.freebsd.org> <20131023174919.GQ52889@FreeBSD.org> In-Reply-To: <20131023174919.GQ52889@FreeBSD.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201310231429.11295.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Wed, 23 Oct 2013 14:40:57 -0400 (EDT) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Oct 2013 18:40:59 -0000 On Wednesday, October 23, 2013 1:49:19 pm Gleb Smirnoff wrote: > On Wed, Oct 23, 2013 at 01:22:50PM +0000, John Baldwin wrote: > J> Author: jhb > J> Date: Wed Oct 23 13:22:50 2013 > J> New Revision: 256962 > J> URL: http://svnweb.freebsd.org/changeset/base/256962 > J> > J> Log: > J> Finish r254925 and remove the last remaining sysctl name list macro. The > J> one port that used it has been fixed to use the more portable > J> getprotoent(3) instead. > J> > J> Modified: > J> head/sys/netinet/in.h > J> > J> Modified: head/sys/netinet/in.h > J> ============================================================================== > J> --- head/sys/netinet/in.h Wed Oct 23 13:09:57 2013 (r256961) > J> +++ head/sys/netinet/in.h Wed Oct 23 13:22:50 2013 (r256962) > J> @@ -603,78 +603,6 @@ int getsourcefilter(int, uint32_t, struc > J> * Third level is protocol number. > J> * Fourth level is desired variable within that protocol. > J> */ > J> -#define IPPROTO_MAXID (IPPROTO_AH + 1) /* don't list to IPPROTO_MAX */ > J> - > > Doesn't above comment belong to the deleted text? Yes, and my previous commit also left various FOO_MAXID constants that are no longer relevant. I will test a patch to clean these up. -- John Baldwin