summaryrefslogtreecommitdiff
path: root/ui/gtk/rpc_stat.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 /ui/gtk/rpc_stat.c
parent0e64efc81a2ee96bcfa8ba43c4aab2e1b0a2d95f (diff)
downloadwireshark-a21436eaeddb4979950e569f8004d84680af8075.tar.gz
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 'ui/gtk/rpc_stat.c')
-rw-r--r--ui/gtk/rpc_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/rpc_stat.c b/ui/gtk/rpc_stat.c
index 1687c68274..144799fac2 100644
--- a/ui/gtk/rpc_stat.c
+++ b/ui/gtk/rpc_stat.c
@@ -523,7 +523,7 @@ gtk_rpcstat_cb(GtkAction *action _U_, gpointer user_data _U_)
}
-static tap_ui rpcstat_ui = {
+static stat_tap_ui rpcstat_ui = {
REGISTER_STAT_GROUP_GENERIC,
NULL,
"rpc,srt,",
@@ -536,6 +536,6 @@ static tap_ui rpcstat_ui = {
void
register_tap_listener_gtkrpcstat(void)
{
- register_tap_ui(&rpcstat_ui, NULL);
+ register_stat_tap_ui(&rpcstat_ui, NULL);
}