aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-03-09 07:51:07 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-03-09 07:51:07 +0000
commit1be3391a940b271e74d5900b4640eef4fd14fd1e (patch)
treedae8eca08567653524630267a0f3d4b216497883 /file.c
parent4d0cb72d021a5d812401f0ce7f5527957ac2f0ab (diff)
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
Diffstat (limited to 'file.c')
-rw-r--r--file.c1
1 files changed, 1 insertions, 0 deletions
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);