aboutsummaryrefslogtreecommitdiffstats
path: root/summary.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2012-03-04 19:01:14 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2012-03-04 19:01:14 +0000
commitd7e47d55735466b340e7c157c1e338ff2100546e (patch)
tree000836bb091c6592cd910cfe21935c82210cbd99 /summary.c
parent41054e9a3e5b131a5b4bc074bddd08c2185fdcec (diff)
if_filter isn't a string per se,The first byte of the Option Data keeps a code of the filter used
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41339 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'summary.c')
-rw-r--r--summary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/summary.c b/summary.c
index f266044aba..cd8abefc4e 100644
--- a/summary.c
+++ b/summary.c
@@ -213,7 +213,7 @@ summary_fill_in_capture(capture_file *cf,capture_options *capture_opts, summary_
idb_info = wtap_file_get_idb_info(cf->wth);
for (i = 0; i < idb_info->number_of_interfaces; i++) {
wtapng_if_descr = g_array_index(idb_info->interface_data, wtapng_if_descr_t, i);
- iface.cfilter = g_strdup(wtapng_if_descr.if_filter);
+ iface.cfilter = g_strdup(wtapng_if_descr.if_filter_str);
iface.name = g_strdup(wtapng_if_descr.if_name);
iface.descr = g_strdup(wtapng_if_descr.if_description);
iface.drops_known = FALSE;