aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-07-27 08:33:26 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-07-27 08:33:26 +0000
commitcb771536dff2d002ab8cc3903c6ecefea4808e9c (patch)
tree1ca2b43c03f4fd6a0f813a1959da0511af054baa /epan/epan.c
parent9ca4ac2bede829da3acd836875e6209e02bb9259 (diff)
From Kovarththanan Rajaratnam:
Only fill in frame_data vals when needed. svn path=/trunk/; revision=29203
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 7e496c008f..de33d7a4d9 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -198,7 +198,7 @@ epan_dissect_prime_dfilter(epan_dissect_t *edt, const dfilter_t* dfcode)
}
void
-epan_dissect_fill_in_columns(epan_dissect_t *edt)
+epan_dissect_fill_in_columns(epan_dissect_t *edt, gboolean fill_fd_colums)
{
- col_fill_in(&edt->pi);
+ col_fill_in(&edt->pi, fill_fd_colums);
}