bugfix in PSML export output: the epan API slightly changed, epan_dissect_fill_in_col...
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 9 Mar 2005 07:51:07 +0000 (07:51 +0000)
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 9 Mar 2005 07:51:07 +0000 (07:51 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13674 f5534014-38df-0310-8fa8-9805f1628bb7

file.c

diff --git a/file.c b/file.c
index 250370bc6105827e1ca8c7fb19cbf5ebcdcc995a..9858f86ecf0ce8aaf957c8e3d851baa51aaf36dd 100644 (file)
--- 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);