summaryrefslogtreecommitdiff
path: root/summary.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-03-04 19:01:14 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-03-04 19:01:14 +0000
commit971cb8487713582445ecde807eb4a5ca2a56d14c (patch)
tree000836bb091c6592cd910cfe21935c82210cbd99 /summary.c
parentd75c3d384e6038677d9ed1a31ff876aa323f15ee (diff)
downloadwireshark-971cb8487713582445ecde807eb4a5ca2a56d14c.tar.gz
if_filter isn't a string per se,The first byte of the Option Data keeps a code of the filter used
svn path=/trunk/; revision=41339
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;