svn commit: r296370 - stable/10/sbin/pfctl
George V. Neville-Neil
gnn at FreeBSD.org
Thu Mar 3 23:25:32 UTC 2016
Author: gnn
Date: Thu Mar 3 23:25:31 2016
New Revision: 296370
URL: https://svnweb.freebsd.org/changeset/base/296370
Log:
MFC 285730
Only report the lack of ALTQ support if pfctl is using verbose (-v) mode.
PR: 194935
Submitted by: Jim Thompson
Approved by: re (gjb)
Modified:
stable/10/sbin/pfctl/pfctl.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sbin/pfctl/pfctl.c
==============================================================================
--- stable/10/sbin/pfctl/pfctl.c Thu Mar 3 23:15:46 2016 (r296369)
+++ stable/10/sbin/pfctl/pfctl.c Thu Mar 3 23:25:31 2016 (r296370)
@@ -1930,7 +1930,7 @@ pfctl_test_altqsupport(int dev, int opts
if (ioctl(dev, DIOCGETALTQS, &pa)) {
if (errno == ENODEV) {
- if (!(opts & PF_OPT_QUIET))
+ if (opts & PF_OPT_VERBOSE)
fprintf(stderr, "No ALTQ support in kernel\n"
"ALTQ related functions disabled\n");
return (0);
More information about the svn-src-stable
mailing list