From owner-svn-src-head@FreeBSD.ORG Fri Apr 1 10:29:43 2011 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE9EB106566B; Fri, 1 Apr 2011 10:29:43 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 909968FC08; Fri, 1 Apr 2011 10:29:43 +0000 (UTC) Received: from 63.imp.bsdimp.com (63.imp.bsdimp.com [10.0.0.63]) (authenticated bits=0) by harmony.bsdimp.com (8.14.4/8.14.3) with ESMTP id p31ARp4V027916 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES128-SHA bits=128 verify=NO); Fri, 1 Apr 2011 04:27:51 -0600 (MDT) (envelope-from imp@bsdimp.com) Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: Warner Losh In-Reply-To: <4D95A697.3050009@FreeBSD.org> Date: Fri, 1 Apr 2011 04:27:50 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <789C49A1-A444-4594-9BD7-AC5E70752BB7@bsdimp.com> References: <4D95A697.3050009@FreeBSD.org> To: Andriy Gapon X-Mailer: Apple Mail (2.1082) X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (harmony.bsdimp.com [10.0.0.6]); Fri, 01 Apr 2011 04:27:51 -0600 (MDT) Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit r220401- in head: lib/libc/gen sys/kern sys/sys X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 01 Apr 2011 10:29:44 -0000 Great commit. Just one nit. See below... On Apr 1, 2011, at 4:19 AM, Andriy Gapon wrote: > --- sys/sys/errno.h (revision 220181) > +++ sys/sys/errno.h (working copy) > @@ -175,13 +175,17 @@ __END_DECLS >=20 > #ifndef _POSIX_SOURCE > #define ENOTCAPABLE 93 /* Capabilities = insufficient */ > -#define ECAPMODE 94 /* Not permitted = in capability mode */ > +#define ECAPMODE 94 /* Not permitted in = capability mode */ > #endif /* _POSIX_SOURCE */ You really shouldn't mix functional changes with white-space changes = like this. Warner