From owner-svn-src-head@FreeBSD.ORG Sat Dec 13 12:03:21 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 E11281065688; Sat, 13 Dec 2008 12:03:21 +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 CE9108FC0C; Sat, 13 Dec 2008 12:03:21 +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 mBDC3Lxp028927; Sat, 13 Dec 2008 12:03:21 GMT (envelope-from rwatson@svn.freebsd.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mBDC3LU9028926; Sat, 13 Dec 2008 12:03:21 GMT (envelope-from rwatson@svn.freebsd.org) Message-Id: <200812131203.mBDC3LU9028926@svn.freebsd.org> From: Robert Watson Date: Sat, 13 Dec 2008 12:03:21 +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: r186036 - head/sys/net 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: Sat, 13 Dec 2008 12:03:22 -0000 Author: rwatson Date: Sat Dec 13 12:03:21 2008 New Revision: 186036 URL: http://svn.freebsd.org/changeset/base/186036 Log: Line wrap very long line in struct packet_filter_hook definition. MFC after: pretty soon Modified: head/sys/net/pfil.h Modified: head/sys/net/pfil.h ============================================================================== --- head/sys/net/pfil.h Sat Dec 13 10:19:28 2008 (r186035) +++ head/sys/net/pfil.h Sat Dec 13 12:03:21 2008 (r186036) @@ -49,7 +49,8 @@ struct inpcb; */ struct packet_filter_hook { TAILQ_ENTRY(packet_filter_hook) pfil_link; - int (*pfil_func)(void *, struct mbuf **, struct ifnet *, int, struct inpcb *); + int (*pfil_func)(void *, struct mbuf **, struct ifnet *, int, + struct inpcb *); void *pfil_arg; int pfil_flags; };