diff options
author | Joel Knight <joel@cvs.openbsd.org> | 2006-11-10 06:07:12 +0000 |
---|---|---|
committer | Joel Knight <joel@cvs.openbsd.org> | 2006-11-10 06:07:12 +0000 |
commit | 794fbab2256423d9a1761c44b39021a25ab36cb0 (patch) | |
tree | 66e8139034d7189bf440f2fdaf76a1e42e34fff7 /sbin/pfctl | |
parent | 8f63215d913ce06b4999e88e8bbdaee3ad78830e (diff) |
Print the interface that each queue is bound to in the pfctl -sq output
ok henning@
Diffstat (limited to 'sbin/pfctl')
-rw-r--r-- | sbin/pfctl/pfctl_altq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c index ca402576043..d3f2bce358c 100644 --- a/sbin/pfctl/pfctl_altq.c +++ b/sbin/pfctl/pfctl_altq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_altq.c,v 1.89 2006/05/14 15:52:11 deraadt Exp $ */ +/* $OpenBSD: pfctl_altq.c,v 1.90 2006/11/10 06:07:11 joel Exp $ */ /* * Copyright (c) 2002 @@ -142,7 +142,7 @@ print_altq(const struct pf_altq *a, unsigned level, struct node_queue_bw *bw, struct node_queue_opt *qopts) { if (a->qname[0] != 0) { - print_queue(a, level, bw, 0, qopts); + print_queue(a, level, bw, 1, qopts); return; } |