Convert one instance of pfil hook callback missed in r254769.

This commit is contained in:
Andre Oppermann 2013-08-24 10:30:20 +00:00
parent 25da5060a4
commit f13e611f7c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=254770

View File

@ -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);