aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.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/epan.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/epan.c')
-rw-r--r--epan/epan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 464cc75cb1..726d2f558c 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -530,15 +530,15 @@ epan_dissect_free(epan_dissect_t* edt)
}
void
-epan_dissect_prime_dfilter(epan_dissect_t *edt, const dfilter_t* dfcode)
+epan_dissect_prime_with_dfilter(epan_dissect_t *edt, const dfilter_t* dfcode)
{
dfilter_prime_proto_tree(dfcode, edt->tree);
}
void
-epan_dissect_prime_hfid(epan_dissect_t *edt, int hfid)
+epan_dissect_prime_with_hfid(epan_dissect_t *edt, int hfid)
{
- proto_tree_prime_hfid(edt->tree, hfid);
+ proto_tree_prime_with_hfid(edt->tree, hfid);
}
/* ----------------------- */