svn commit: r254770 - head/sys/net

Andre Oppermann andre at FreeBSD.org
Sat Aug 24 10:30:21 UTC 2013


Author: andre
Date: Sat Aug 24 10:30:20 2013
New Revision: 254770
URL: http://svnweb.freebsd.org/changeset/base/254770

Log:
  Convert one instance of pfil hook callback missed in r254769.

Modified:
  head/sys/net/pfil.c

Modified: head/sys/net/pfil.c
==============================================================================
--- head/sys/net/pfil.c	Sat Aug 24 10:13:59 2013	(r254769)
+++ head/sys/net/pfil.c	Sat Aug 24 10:30:20 2013	(r254770)
@@ -53,10 +53,7 @@ MTX_SYSINIT(pfil_heads_lock, &pfil_globa
   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);


More information about the svn-src-head mailing list