summaryrefslogtreecommitdiffstats
path: root/sys/contrib/pf/net/if_pflog.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/pf/net/if_pflog.c')
-rw-r--r--sys/contrib/pf/net/if_pflog.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/contrib/pf/net/if_pflog.c b/sys/contrib/pf/net/if_pflog.c
index ca7b401..d267f72 100644
--- a/sys/contrib/pf/net/if_pflog.c
+++ b/sys/contrib/pf/net/if_pflog.c
@@ -104,8 +104,8 @@ struct pflog_softc pflogif[NPFLOG];
#endif
#ifdef __FreeBSD__
-void pflog_clone_destroy(struct ifnet *);
-int pflog_clone_create(struct if_clone *, int);
+static void pflog_clone_destroy(struct ifnet *);
+static int pflog_clone_create(struct if_clone *, int);
#else
void pflogattach(int);
#endif
@@ -125,7 +125,7 @@ static LIST_HEAD(pflog_list, pflog_softc) pflog_list;
struct if_clone pflog_cloner = IF_CLONE_INITIALIZER(PFLOGNAME,
pflog_clone_create, pflog_clone_destroy, 1, IF_MAXUNIT);
-void
+static void
pflog_clone_destroy(struct ifnet *ifp)
{
struct pflog_softc *sc;
@@ -143,7 +143,7 @@ pflog_clone_destroy(struct ifnet *ifp)
free(sc, M_PFLOG);
}
-int
+static int
pflog_clone_create(struct if_clone *ifc, int unit)
{
struct pflog_softc *sc;
OpenPOWER on IntegriCloud