From 1be3391a940b271e74d5900b4640eef4fd14fd1e Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Wed, 9 Mar 2005 07:51:07 +0000 Subject: bugfix in PSML export output: the epan API slightly changed, epan_dissect_fill_in_columns must be called now to fill in column data. This resulted in missing values in PSML output. svn path=/trunk/; revision=13674 --- file.c | 1 + 1 file changed, 1 insertion(+) diff --git a/file.c b/file.c index 250370bc61..9858f86ecf 100644 --- a/file.c +++ b/file.c @@ -2055,6 +2055,7 @@ write_psml_packet(capture_file *cf, frame_data *fdata, /* Fill in the column information, but don't create the protocol tree. */ edt = epan_dissect_new(FALSE, FALSE); epan_dissect_run(edt, pseudo_header, pd, fdata, &cf->cinfo); + epan_dissect_fill_in_columns(edt); /* Write out the information in that tree. */ proto_tree_write_psml(edt, fh); -- cgit v1.2.3