summaryrefslogtreecommitdiff
path: root/sbin/pfctl
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2003-01-10 08:00:24 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2003-01-10 08:00:24 +0000
commitba994442059ee96620dfd8a422e2f7ced9f64c83 (patch)
treeb13001624b073bc2faae4c3329f926a51da01102 /sbin/pfctl
parent95376acbb70d18781086caa566ce45fbd18e7015 (diff)
print queue length for PRIQ, works now
Diffstat (limited to 'sbin/pfctl')
-rw-r--r--sbin/pfctl/pfctl_qstats.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sbin/pfctl/pfctl_qstats.c b/sbin/pfctl/pfctl_qstats.c
index 7554ac21a95..10beb6e7085 100644
--- a/sbin/pfctl/pfctl_qstats.c
+++ b/sbin/pfctl/pfctl_qstats.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl_qstats.c,v 1.5 2003/01/10 07:59:18 henning Exp $ */
+/* $OpenBSD: pfctl_qstats.c,v 1.6 2003/01/10 08:00:23 henning Exp $ */
/*
* Copyright (c) 2003 Henning Brauer
@@ -272,12 +272,8 @@ print_priqstats(struct priq_classstats qstats)
"dropped pkts: %6llu bytes: %6llu ]\n",
qstats.xmitcnt.packets, qstats.xmitcnt.bytes,
qstats.dropcnt.packets, qstats.dropcnt.bytes);
-
-/* strange results. disable for now */
-#if 0
printf("[ qlength: %3d/%3d ]\n",
qstats.qlength, qstats.qlimit);
-#endif
}