svn commit: r186036 - head/sys/net
Robert Watson
rwatson at FreeBSD.org
Sat Dec 13 12:03:22 UTC 2008
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;
};
More information about the svn-src-all
mailing list