summaryrefslogtreecommitdiffstats
path: root/ebtables.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-10-17 22:00:23 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-10-17 22:00:23 +0000
commit73fccca7c1bb1feacca901471eeafc32a713786b (patch)
treea126d99e794fc86a4f847d90a18a1a36726a0929 /ebtables.c
parenta21bc7d7e8a5e8ba90dae48ea7a024d5a3d46e31 (diff)
add bcnt
Diffstat (limited to 'ebtables.c')
-rw-r--r--ebtables.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ebtables.c b/ebtables.c
index 2ace08c..c057f09 100644
--- a/ebtables.c
+++ b/ebtables.c
@@ -635,8 +635,9 @@ enddst:
print_bug("Target not found");
t->print(hlp, hlp->t);
if (replace.flags & LIST_C)
- printf(", count = %llu",
- replace.counters[entries->counter_offset + i].pcnt);
+ printf(", pcnt = %llu -- bcnt = %llu",
+ replace.counters[entries->counter_offset + i].pcnt,
+ replace.counters[entries->counter_offset + i].bcnt);
printf("\n");
hlp = hlp->next;
}