get rid of pfsync_state_export.
authordlg <dlg@openbsd.org>
Sun, 6 Nov 2022 21:31:24 +0000 (21:31 +0000)
committerdlg <dlg@openbsd.org>
Sun, 6 Nov 2022 21:31:24 +0000 (21:31 +0000)
it wraps pf_state_export and has the same arguments and return type.
pfsync can just call pf_state_export instead.

ok clang

sys/net/if_pfsync.c

index 8f36e81..d19129b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_pfsync.c,v 1.307 2022/11/06 18:05:05 dlg Exp $     */
+/*     $OpenBSD: if_pfsync.c,v 1.308 2022/11/06 21:31:24 dlg Exp $     */
 
 /*
  * Copyright (c) 2002 Michael Shalayeff
@@ -501,12 +501,6 @@ pfsync_ifdetach(void *arg)
        sc->sc_sync_ifidx = 0;
 }
 
-void
-pfsync_state_export(struct pfsync_state *sp, struct pf_state *st)
-{
-       pf_state_export(sp, st);
-}
-
 int
 pfsync_input(struct mbuf **mp, int *offp, int proto, int af)
 {
@@ -1312,7 +1306,7 @@ pfsync_out_state(struct pf_state *st, void *buf)
 {
        struct pfsync_state *sp = buf;
 
-       pfsync_state_export(sp, st);
+       pf_state_export(sp, st);
 }
 
 void