From owner-svn-src-head@freebsd.org Wed Aug 22 08:27:50 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 47D31108162B; Wed, 22 Aug 2018 08:27:50 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E99DF89B99; Wed, 22 Aug 2018 08:27:49 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C94C6107BB; Wed, 22 Aug 2018 08:27:49 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7M8Rn0I017211; Wed, 22 Aug 2018 08:27:49 GMT (envelope-from kp@FreeBSD.org) Received: (from kp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7M8RnHi017210; Wed, 22 Aug 2018 08:27:49 GMT (envelope-from kp@FreeBSD.org) Message-Id: <201808220827.w7M8RnHi017210@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kp set sender to kp@FreeBSD.org using -f From: Kristof Provost Date: Wed, 22 Aug 2018 08:27:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r338184 - head/sbin/pfctl X-SVN-Group: head X-SVN-Commit-Author: kp X-SVN-Commit-Paths: head/sbin/pfctl X-SVN-Commit-Revision: 338184 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2018 08:27:50 -0000 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) {