summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorMartin Kacer <kacer.martin@gmail.com>2017-01-19 15:37:54 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2017-02-05 14:03:34 +0000
commitc9d8c1c8c518f5c5b9eebb6a922c0eb410356dad (patch)
tree243d047bbe9aae35373550ef8e2446b7a7fdc6fa /file.c
parenta8ceeca444c97033e630d56d6a6fb096e696163b (diff)
downloadwireshark-c9d8c1c8c518f5c5b9eebb6a922c0eb410356dad.tar.gz
PDML: protocol filter incorrectly filters desired subfields
Bug: 12847 Change-Id: I8a560dc44dceb06123d8bcecd512d132ee4ebb0d Reviewed-on: https://code.wireshark.org/review/19671 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'file.c')
-rw-r--r--file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.c b/file.c
index 547f2bf48c..c8c9c13449 100644
--- a/file.c
+++ b/file.c
@@ -2518,7 +2518,7 @@ write_pdml_packet(capture_file *cf, frame_data *fdata,
epan_dissect_run(&args->edt, cf->cd_t, phdr, frame_tvbuff_new(fdata, pd), fdata, NULL);
/* Write out the information in that tree. */
- write_pdml_proto_tree(NULL, NULL, &args->edt, args->fh);
+ write_pdml_proto_tree(NULL, NULL, PF_NONE, &args->edt, args->fh);
epan_dissect_reset(&args->edt);
@@ -2812,7 +2812,7 @@ write_json_packet(capture_file *cf, frame_data *fdata,
epan_dissect_run(&args->edt, cf->cd_t, phdr, frame_tvbuff_new(fdata, pd), fdata, NULL);
/* Write out the information in that tree. */
- write_json_proto_tree(NULL, args->print_args, NULL, &args->edt, args->fh);
+ write_json_proto_tree(NULL, args->print_args, NULL, PF_NONE, &args->edt, args->fh);
epan_dissect_reset(&args->edt);