From cd615bf560eca2cfb4cab900a94f4077c6644d55 Mon Sep 17 00:00:00 2001 From: Kristof Provost Date: Wed, 22 Aug 2018 08:27:49 +0000 Subject: [PATCH] pfctl: Remove unused function Fix compile issues. MFC after: 1 week --- sbin/pfctl/pfctl.c | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index 4e71be09d07..bd4f5e70ab8 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -342,26 +342,6 @@ pfctl_check_skip_ifaces(char *ifname) return (0); } -static void -pfctl_adjust_skip_ifaces_group_member(struct pfctl *pf, char *ifname) -{ - struct pfi_kif *p; - - PFRB_FOREACH(p, &skip_b) { - if (p->pfik_ifp == NULL) - continue; - - if (strncmp(p->pfik_name, ifname, IFNAMSIZ)) - continue; - - if (!(p->pfik_flags & PFI_IFLAG_SKIP)) - pfctl_set_interface_flags(pf, p->pfik_name, - PFI_IFLAG_SKIP, 1); - if (p->pfik_flags & PFI_IFLAG_SKIP) - p->pfik_flags &= ~PFI_IFLAG_SKIP; - } -} - int pfctl_adjust_skip_ifaces(struct pfctl *pf) {