aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter/dfilter.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-04-11 21:56:14 -0700
committerGuy Harris <guy@alum.mit.edu>2017-04-12 04:56:49 +0000
commit4d2d42310610e736f23466472ca5dd70b7655c7f (patch)
tree2e87b1698892166172d6b5410e2c306d3298b2c8 /epan/dfilter/dfilter.c
parentc0792555392f234ab96917e784d365b5de053836 (diff)
Rename routines to clarify what they do.
XXX_prime_with_YYY makes it a bit clearer than does XXX_prime_YYY that we're not priming YYY, we're priming XXX *using* YYY. Change-Id: I1686b8b5469bc0f0bd6db8551fb6301776a1b133 Reviewed-on: https://code.wireshark.org/review/21031 Reviewed-by: Guy Harris <guy@alum.mit.edu>
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 c9b24779a5..d29d600ada 100644
--- a/epan/dfilter/dfilter.c
+++ b/epan/dfilter/dfilter.c
@@ -426,7 +426,7 @@ dfilter_prime_proto_tree(const dfilter_t *df, proto_tree *tree)
int i;
for (i = 0; i < df->num_interesting_fields; i++) {
- proto_tree_prime_hfid(tree, df->interesting_fields[i]);
+ proto_tree_prime_with_hfid(tree, df->interesting_fields[i]);
}
}