Date: Wed, 22 Aug 2018 08:27:49 +0000 (UTC) From: Kristof Provost <kp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r338184 - head/sbin/pfctl Message-ID: <201808220827.w7M8RnHi017210@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kp Date: Wed Aug 22 08:27:49 2018 New Revision: 338184 URL: https://svnweb.freebsd.org/changeset/base/338184 Log: pfctl: Remove unused function Fix compile issues. MFC after: 1 week Modified: head/sbin/pfctl/pfctl.c Modified: head/sbin/pfctl/pfctl.c ============================================================================== --- head/sbin/pfctl/pfctl.c Wed Aug 22 08:14:29 2018 (r338183) +++ head/sbin/pfctl/pfctl.c Wed Aug 22 08:27:49 2018 (r338184) @@ -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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808220827.w7M8RnHi017210>