aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation_table.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-11-14 10:42:26 -0800
committerGuy Harris <guy@alum.mit.edu>2014-11-14 18:42:50 +0000
commita21436eaeddb4979950e569f8004d84680af8075 (patch)
tree34b127324573aafc11d7a8bab6bbf5e84e8ed8de /epan/conversation_table.c
parent0e64efc81a2ee96bcfa8ba43c4aab2e1b0a2d95f (diff)
tap_ui -> stat_tap_ui.
The old routine had stat_ in the name, as the expectation was that they were for statistics taps; that's still the expectation, so have stat_ in the data structure and routine names. Change-Id: Ic98d011012b8641173d41fa0ec4f4e625614370a Reviewed-on: https://code.wireshark.org/review/5303 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/conversation_table.c')
-rw-r--r--epan/conversation_table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/conversation_table.c b/epan/conversation_table.c
index 2639edd065..3f2f5eddd4 100644
--- a/epan/conversation_table.c
+++ b/epan/conversation_table.c
@@ -148,7 +148,7 @@ register_conversation_table(const int proto_id, gboolean hide_ports, tap_packet_
register_ct_t *table;
GString *conv_cmd_str = g_string_new("conv,");
GString *host_cmd_str = g_string_new("");
- tap_ui ui_info;
+ stat_tap_ui ui_info;
table = g_new(register_ct_t,1);
@@ -171,7 +171,7 @@ register_conversation_table(const int proto_id, gboolean hide_ports, tap_packet_
ui_info.index = -1;
ui_info.nparams = 0;
ui_info.params = NULL;
- register_tap_ui(&ui_info, table);
+ register_stat_tap_ui(&ui_info, table);
g_string_free(conv_cmd_str, FALSE);
g_string_printf(host_cmd_str, "%s,%s", (get_hostlist_prefix_func(table) != NULL) ? get_hostlist_prefix_func(table)() : "host",
@@ -183,7 +183,7 @@ register_conversation_table(const int proto_id, gboolean hide_ports, tap_packet_
ui_info.index = -1;
ui_info.nparams = 0;
ui_info.params = NULL;
- register_tap_ui(&ui_info, table);
+ register_stat_tap_ui(&ui_info, table);
g_string_free(host_cmd_str, FALSE);
}