diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2011-07-03 23:46:24 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2011-07-03 23:46:24 +0000 |
commit | b20f34bec7d6bea416763251b34847b0d1d9c5b0 (patch) | |
tree | c95064d4e6bab2d06b42b6c9e5b9c76efb1fb7df /sbin/pfctl | |
parent | c22be30ebe7d9c8ce80dfe223351edaf2c035c33 (diff) |
*_CLEARDSCP could never possibly have been set, no point in being able to
print that as flag then
Diffstat (limited to 'sbin/pfctl')
-rw-r--r-- | sbin/pfctl/pfctl_altq.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c index 0a174e5f46b..a7cb695604e 100644 --- a/sbin/pfctl/pfctl_altq.c +++ b/sbin/pfctl/pfctl_altq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_altq.c,v 1.94 2008/07/25 17:43:44 martynas Exp $ */ +/* $OpenBSD: pfctl_altq.c,v 1.95 2011/07/03 23:46:23 henning Exp $ */ /* * Copyright (c) 2002 @@ -548,8 +548,6 @@ print_cbq_opts(const struct pf_altq *a) printf(" ecn"); if (opts->flags & CBQCLF_RIO) printf(" rio"); - if (opts->flags & CBQCLF_CLEARDSCP) - printf(" cleardscp"); if (opts->flags & CBQCLF_FLOWVALVE) printf(" flowvalve"); if (opts->flags & CBQCLF_BORROW) @@ -635,8 +633,6 @@ print_priq_opts(const struct pf_altq *a) printf(" ecn"); if (opts->flags & PRCF_RIO) printf(" rio"); - if (opts->flags & PRCF_CLEARDSCP) - printf(" cleardscp"); if (opts->flags & PRCF_DEFAULTCLASS) printf(" default"); printf(" ) "); @@ -851,8 +847,6 @@ print_hfsc_opts(const struct pf_altq *a, const struct node_queue_opt *qopts) printf(" ecn"); if (opts->flags & HFCF_RIO) printf(" rio"); - if (opts->flags & HFCF_CLEARDSCP) - printf(" cleardscp"); if (opts->flags & HFCF_DEFAULTCLASS) printf(" default"); if (opts->rtsc_m2 != 0) |