summaryrefslogtreecommitdiff
path: root/epan/dfilter/dfilter.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-02-29 05:58:45 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-02-29 05:58:45 +0000
commit7f96d94b7c97ba890ba90dd4c55b5d231fd08262 (patch)
tree0ff1426afad5cc2f09ab13b46528de9b865d611c /epan/dfilter/dfilter.c
parent9bdde5216f3ec31d4a02329423708288c57329c3 (diff)
downloadwireshark-7f96d94b7c97ba890ba90dd4c55b5d231fd08262.tar.gz
From Gilbert Ramirez: When filtering on a single-byte byte-array-slice, using a normal hex string would be nice
svn path=/trunk/; revision=41232
Diffstat (limited to 'epan/dfilter/dfilter.c')
-rw-r--r--epan/dfilter/dfilter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dfilter/dfilter.c b/epan/dfilter/dfilter.c
index 668d8191ad..132d74f1aa 100644
--- a/epan/dfilter/dfilter.c
+++ b/epan/dfilter/dfilter.c
@@ -409,7 +409,7 @@ dfilter_dump(dfilter_t *df)
guint i;
const gchar *sep = "";
- dfvm_dump(stdout, df->insns);
+ dfvm_dump(stdout, df);
if (df->deprecated && df->deprecated->len) {
printf("\nDeprecated tokens: ");