diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-28 14:50:24 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-28 14:50:24 +0000 |
commit | 0799ceb6aae0fc94e41a3d203b9f976d2c40099d (patch) | |
tree | 48a964650d20f0f6e36441dae72f583097f3f0c2 /sbin/pfctl | |
parent | 8c435247999f6bd33c7eb01ea6482cbb5fba8615 (diff) |
qlimit before tbrsize
Diffstat (limited to 'sbin/pfctl')
-rw-r--r-- | sbin/pfctl/pfctl_altq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c index 92fb2d9a398..118c6d8d9c2 100644 --- a/sbin/pfctl/pfctl_altq.c +++ b/sbin/pfctl/pfctl_altq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_altq.c,v 1.13 2002/11/28 14:44:57 henning Exp $ */ +/* $OpenBSD: pfctl_altq.c,v 1.14 2002/11/28 14:50:23 henning Exp $ */ /* * Copyright (C) 2002 * Sony Computer Science Laboratories Inc. All rights reserved. @@ -151,10 +151,10 @@ print_altq(const struct pf_altq *a, unsigned level) printf("cbq "); } - printf("bandwidth %s tbrsize %u ", rate2str((double)a->ifbandwidth), - a->tbrsize); + printf("bandwidth %s ", rate2str((double)a->ifbandwidth)); if (a->qlimit != DEFAULT_QLIMIT) printf("qlimit %u ", a->qlimit); + printf("tbrsize %u ", a->tbrsize); } void |