aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
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);
}
/* ----------------------- */