From owner-svn-src-head@FreeBSD.ORG Wed Dec 10 13:24:38 2008 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 E604E1065678; Wed, 10 Dec 2008 13:24:38 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D68BA8FC14; Wed, 10 Dec 2008 13:24:38 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mBADOc7s031435; Wed, 10 Dec 2008 13:24:38 GMT (envelope-from rwatson@svn.freebsd.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mBADOcR3031434; Wed, 10 Dec 2008 13:24:38 GMT (envelope-from rwatson@svn.freebsd.org) Message-Id: <200812101324.mBADOcR3031434@svn.freebsd.org> From: Robert Watson Date: Wed, 10 Dec 2008 13:24:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r185858 - head/sys/netinet 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: Wed, 10 Dec 2008 13:24:39 -0000 Author: rwatson Date: Wed Dec 10 13:24:38 2008 New Revision: 185858 URL: http://svn.freebsd.org/changeset/base/185858 Log: Remove inconsistent white space from in_pcballoc(). MFC after: pretty soon Modified: head/sys/netinet/in_pcb.c Modified: head/sys/netinet/in_pcb.c ============================================================================== --- head/sys/netinet/in_pcb.c Wed Dec 10 11:11:43 2008 (r185857) +++ head/sys/netinet/in_pcb.c Wed Dec 10 13:24:38 2008 (r185858) @@ -212,7 +212,6 @@ in_pcballoc(struct socket *so, struct in mac_inpcb_create(so, inp); SOCK_UNLOCK(so); #endif - #ifdef IPSEC error = ipsec_init_policy(so, &inp->inp_sp); if (error != 0) { @@ -239,7 +238,6 @@ in_pcballoc(struct socket *so, struct in INP_WLOCK(inp); inp->inp_gencnt = ++pcbinfo->ipi_gencnt; inp->inp_refcount = 1; /* Reference from the inpcbinfo */ - #if defined(IPSEC) || defined(MAC) out: if (error != 0) {