diff options
author | andre <andre@FreeBSD.org> | 2013-08-24 10:30:20 +0000 |
---|---|---|
committer | andre <andre@FreeBSD.org> | 2013-08-24 10:30:20 +0000 |
commit | 8095dac6a243c9f42f6ec86e671e00b39b0c133f (patch) | |
tree | ab512f02546e86f662923ce1fcf87557dcdaf9bd /sys/net/pfil.c | |
parent | 5630e57e48c003966005f869d05ab9526a49e940 (diff) | |
download | FreeBSD-src-8095dac6a243c9f42f6ec86e671e00b39b0c133f.zip FreeBSD-src-8095dac6a243c9f42f6ec86e671e00b39b0c133f.tar.gz |
Convert one instance of pfil hook callback missed in r254769.
Diffstat (limited to 'sys/net/pfil.c')
-rw-r--r-- | sys/net/pfil.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/net/pfil.c b/sys/net/pfil.c index e8c7d11..fc7a5ae 100644 --- a/sys/net/pfil.c +++ b/sys/net/pfil.c @@ -53,10 +53,7 @@ MTX_SYSINIT(pfil_heads_lock, &pfil_global_lock, "pfil_head_list lock", MTX_DEF); static int pfil_list_add(pfil_list_t *, struct packet_filter_hook *, int); - -static int pfil_list_remove(pfil_list_t *, - int (*)(void *, struct mbuf **, struct ifnet *, int, struct inpcb *), - void *); +static int pfil_list_remove(pfil_list_t *, pfil_func_t, void *); LIST_HEAD(pfilheadhead, pfil_head); VNET_DEFINE(struct pfilheadhead, pfil_head_list); |