diff options
Diffstat (limited to 'sbin/pfctl/parse.y')
-rw-r--r-- | sbin/pfctl/parse.y | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index 9fa4a700fe3..bd94783e0e1 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.366 2003/04/14 14:50:46 henning Exp $ */ +/* $OpenBSD: parse.y,v 1.367 2003/04/15 11:29:24 henning Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -3157,7 +3157,7 @@ expand_altq(struct pf_altq *a, struct node_if *interfaces, if (pf->opts & PF_OPT_VERBOSE) { print_altq(&pf->paltq->altq, 0, - &bwspec); + &bwspec, opts); if (nqueues && nqueues->tail) { printf("queue { "); LOOP_THROUGH(struct node_queue, queue, @@ -3336,7 +3336,8 @@ expand_queue(struct pf_altq *a, struct node_if *interfaces, (found == 1 && interface->ifname[0] == 0) || (found > 0 && interface->ifname[0] != 0))) { print_queue(&pf->paltq->altq, 0, - &bwspec, interface->ifname[0] != 0); + &bwspec, interface->ifname[0] != 0, + opts); if (nqueues && nqueues->tail) { printf("{ "); LOOP_THROUGH(struct node_queue, |