From 035d16d59435f764cf2b24a290f31736d1ce3f34 Mon Sep 17 00:00:00 2001 From: "osdl.net!shemminger" Date: Tue, 31 Aug 2004 17:54:25 +0000 Subject: [PATCH] Fix typo in requeues (Logical change 1.78) --- tc/tc_qdisc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tc/tc_qdisc.c b/tc/tc_qdisc.c index 8f324895..7fac569e 100644 --- a/tc/tc_qdisc.c +++ b/tc/tc_qdisc.c @@ -177,7 +177,7 @@ void print_tcstats_attr(FILE *fp, const struct rtattr *rta) memset(&st, 0, sizeof(st)); memcpy(&st, RTA_DATA(rta), MIN(RTA_PAYLOAD(rta), sizeof(st))); - fprintf(fp, " Sent %llu bytes %u pkts (dropped %u, overlimits %u requeus%u ) ", + fprintf(fp, " Sent %llu bytes %u pkts (dropped %u, overlimits %u requeues %u) ", (unsigned long long)st.bytes, st.packets, st.drops, st.overlimits, st.reqs);