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);
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"