diff options
author | rwatson <rwatson@FreeBSD.org> | 2008-12-13 12:03:21 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2008-12-13 12:03:21 +0000 |
commit | eea87ca93f64298bf448aef14d2833d79246936e (patch) | |
tree | 80b35d87330b4fa117d6cafc212f48fe68afe0b0 /sys/net/pfil.h | |
parent | 79e02d31dd20ee88d6186578a0440492aca107cc (diff) | |
download | FreeBSD-src-eea87ca93f64298bf448aef14d2833d79246936e.zip FreeBSD-src-eea87ca93f64298bf448aef14d2833d79246936e.tar.gz |
Line wrap very long line in struct packet_filter_hook definition.
MFC after: pretty soon
Diffstat (limited to 'sys/net/pfil.h')
-rw-r--r-- | sys/net/pfil.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/pfil.h b/sys/net/pfil.h index 22d3d16..5db9e55 100644 --- a/sys/net/pfil.h +++ b/sys/net/pfil.h @@ -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; }; |