Author: kp
Date: Tue Jul  3 08:50:49 2018
New Revision: 335886
URL: https://svnweb.freebsd.org/changeset/base/335886

Log:
  pfctl: Don't retrieve interface list if '-n' is set
  
  If '-n' is set we don't use the list of skip interfaces, so don't retrieve it.
  This fixes issues if 'pfctl -n' is used before the pf module is loaded. This
  was broken by r333181.
  
  Reported by:  Jakub Chromy <hicks AT cgi.cz>
  MFC after:    1 week

Modified:
  head/sbin/pfctl/pfctl.c

Modified: head/sbin/pfctl/pfctl.c
==============================================================================
--- head/sbin/pfctl/pfctl.c     Tue Jul  3 08:44:40 2018        (r335885)
+++ head/sbin/pfctl/pfctl.c     Tue Jul  3 08:50:49 2018        (r335886)
@@ -2409,7 +2409,7 @@ main(int argc, char *argv[])
        }
 
        if ((rulesopt != NULL) && (loadopt & PFCTL_FLAG_OPTION) &&
-           !anchorname[0])
+           !anchorname[0] && !(opts & PF_OPT_NOACTION))
                if (pfctl_get_skip_ifaces())
                        error = 1;
 
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to