aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/main_statusbar.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-17 01:18:14 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-17 01:18:14 +0000
commit5afc48721d5e2785636a8a5f3e40ef91e359a702 (patch)
tree8239ff427bfe4e5c475b4f8429f0fef9186cf773 /gtk/main_statusbar.c
parent3e117e9481a23779387a17b7eb141a7bf6cd777b (diff)
Introduce "Ignore Packet" in the packet list.
This will remove the package from the dissection functions without removing it from the capture file. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31287 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/main_statusbar.c')
-rw-r--r--gtk/main_statusbar.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/main_statusbar.c b/gtk/main_statusbar.c
index 9d4a97224f..2ed3b1508f 100644
--- a/gtk/main_statusbar.c
+++ b/gtk/main_statusbar.c
@@ -439,6 +439,9 @@ packets_bar_update(void)
if(cfile.drops_known) {
packets_str = g_strdup_printf(" Packets: %u Displayed: %u Marked: %u Dropped: %u",
cfile.count, cfile.displayed_count, cfile.marked_count, cfile.drops);
+ } else if (cfile.ignored_count > 0) {
+ packets_str = g_strdup_printf(" Packets: %u Displayed: %u Marked: %u Ignored: %u",
+ cfile.count, cfile.displayed_count, cfile.marked_count, cfile.ignored_count);
} else {
gulong computed_elapsed = cf_get_computed_elapsed();