aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissector_filters.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-10-28 21:21:36 -0700
committerGuy Harris <guy@alum.mit.edu>2015-10-29 04:22:02 +0000
commita937d6b2e5f0ebafef59aba28c2d9ef9ee0a5912 (patch)
tree77bf1621423c292529b051e304647de2650972d6 /epan/dissector_filters.c
parented098373991bb1493e7fbfad72898fa139cd2b35 (diff)
Tweak some names to better reflect what the named items are.
The old "dissector filter" code used "_filter_" in some names; the new code used "_conv_", but they're not checking whether a *conversation* is valid and building a *conversation* string, they're checking whether a *filter* can be generated and building that *filter* string. Change-Id: Iea6b1cbeb0fedefdb1fff6c23d7dee9d6e684c15 Reviewed-on: https://code.wireshark.org/review/11383 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissector_filters.c')
-rw-r--r--epan/dissector_filters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissector_filters.c b/epan/dissector_filters.c
index e74c76d9ae..8b84f5ec15 100644
--- a/epan/dissector_filters.c
+++ b/epan/dissector_filters.c
@@ -33,7 +33,7 @@ GList *conv_filter_list = NULL;
void register_conversation_filter(const char *proto_name, const char *display_name,
- is_conv_valid_func is_filter_valid, build_conv_string_func build_filter_string) {
+ is_filter_valid_func is_filter_valid, build_filter_string_func build_filter_string) {
conversation_filter_t *entry;
entry = (conversation_filter_t *)g_malloc(sizeof(conversation_filter_t));