summaryrefslogtreecommitdiff
path: root/sbin/pfctl/pfctl_altq.c
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2003-04-15 10:56:22 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2003-04-15 10:56:22 +0000
commit4042999a30083d9d4b5ff02a566cf01816cf4236 (patch)
tree88d5d6d6e8d54c48ba26347b97c9bd77976c7e09 /sbin/pfctl/pfctl_altq.c
parent0aefc5a00d2e75d2c5beddf39b4d2f1e8ca735ad (diff)
don't include the unit "ms" when printing the service curve; parser wants
raw number
Diffstat (limited to 'sbin/pfctl/pfctl_altq.c')
-rw-r--r--sbin/pfctl/pfctl_altq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c
index 06953e613e6..c6fcaf08e42 100644
--- a/sbin/pfctl/pfctl_altq.c
+++ b/sbin/pfctl/pfctl_altq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl_altq.c,v 1.69 2003/04/15 10:20:19 henning Exp $ */
+/* $OpenBSD: pfctl_altq.c,v 1.70 2003/04/15 10:56:21 henning Exp $ */
/*
* Copyright (C) 2002
@@ -1178,7 +1178,7 @@ void
print_hfsc_sc(char *scname, u_int m1, u_int d, u_int m2)
{
if (d != 0)
- printf(" %s(%s %ums %s)", scname,
+ printf(" %s(%s %u %s)", scname,
rate2str((double)m1), d,
rate2str((double)m2));
else