summaryrefslogtreecommitdiffstats
path: root/userspace/ebtables2/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
commit9cccad8f789437174f3ff74af27a226de23b0b25 (patch)
tree1bc8eb08840829148f10164c7a95def20d25fc50 /userspace/ebtables2/ebtables.c
parenta4f30f836a524445cf45689c4d6167c2257911de (diff)
add bcnt
Diffstat (limited to 'userspace/ebtables2/ebtables.c')
-rw-r--r--userspace/ebtables2/ebtables.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/userspace/ebtables2/ebtables.c b/userspace/ebtables2/ebtables.c
index 2ace08c..c057f09 100644
--- a/userspace/ebtables2/ebtables.c
+++ b/userspace/ebtables2/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;
}