summaryrefslogtreecommitdiff
path: root/print.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-12-13 20:07:21 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-12-13 20:07:21 +0000
commite3834e30b3243e75feee1be49d270a35b79bd9d6 (patch)
treef17cbc5de8c56e369ade5423f81fe1301898c861 /print.c
parentec42a2bd1d04db724e837c907ee0a4af724224db (diff)
downloadwireshark-e3834e30b3243e75feee1be49d270a35b79bd9d6.tar.gz
Don't close the field tag here; it's now closed with </field>.
svn path=/trunk/; revision=40184
Diffstat (limited to 'print.c')
-rw-r--r--print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print.c b/print.c
index 46300e21f6..647a8d4e0b 100644
--- a/print.c
+++ b/print.c
@@ -360,7 +360,7 @@ proto_tree_write_node_pdml(proto_node *node, gpointer data)
/* Write out field with data */
fputs("<field name=\"data\" value=\"", pdata->fh);
write_pdml_field_hex_value(pdata, fi);
- fputs("\"/>\n", pdata->fh);
+ fputs("\">\n", pdata->fh);
}
/* Normal protocols and fields */
else {