aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2008-02-12 08:09:22 +0000
committerStephen Fisher <steve@stephen-fisher.com>2008-02-12 08:09:22 +0000
commit5e893a8b1c6707a8526e9a60168e5dbebe567b05 (patch)
treee23190decbf760601116e1506ba3bee7956afb1e /file.c
parent0a85a9e4c6016b0cd68b590990a927f4bb4d4fce (diff)
Revert commit 24308 until I can get it to compile on Windows/Linux/Solaris
(strangely, it compiled fine on my MacOS X machine). svn path=/trunk/; revision=24309
Diffstat (limited to 'file.c')
-rw-r--r--file.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/file.c b/file.c
index b50ab8a3df..4e5a12e8a7 100644
--- a/file.c
+++ b/file.c
@@ -77,7 +77,8 @@
#include <epan/timestamp.h>
#include <epan/dfilter/dfilter-macro.h>
#include "file_util.h"
-#include <epan/column-utils.h>
+
+
#ifdef HAVE_LIBPCAP
gboolean auto_scroll_live;
@@ -938,13 +939,11 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
we have tap listeners;
- we have custom columns;
-
allocate a protocol tree root node, so that we'll construct
a protocol tree against which a filter expression can be
evaluated. */
if ((dfcode != NULL && refilter) || color_filters_used()
- || num_tap_filters != 0 || have_custom_cols())
+ || num_tap_filters != 0)
create_proto_tree = TRUE;
/* Dissect the frame. */
@@ -957,9 +956,6 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
if (color_filters_used()) {
color_filters_prime_edt(edt);
}
-
- col_custom_prime_edt(edt);
-
tap_queue_init(edt);
epan_dissect_run(edt, pseudo_header, buf, fdata, &cf->cinfo);
tap_push_tapped_queue(edt);