summaryrefslogtreecommitdiff
path: root/ui/cli/tap-rtspstat.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-11-14 10:55:50 -0800
committerGuy Harris <guy@alum.mit.edu>2014-11-14 18:56:12 +0000
commitc3582a69450db307a973585857791ca814e19a50 (patch)
tree526e8a6d82e3029ef0b9f77d1587009d6f38d639 /ui/cli/tap-rtspstat.c
parent4d3c4c4f12726404549e5c8a99439b5a371da282 (diff)
downloadwireshark-c3582a69450db307a973585857791ca814e19a50.tar.gz
There's nothing GTK+ about TShark.
Remove gtk from routine names in CLI taps. Change-Id: I0846da9b1e8119ed966b441cb1ca0ce1820fd1c8 Reviewed-on: https://code.wireshark.org/review/5305 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/cli/tap-rtspstat.c')
-rw-r--r--ui/cli/tap-rtspstat.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/cli/tap-rtspstat.c b/ui/cli/tap-rtspstat.c
index 988d7b4759..f548460049 100644
--- a/ui/cli/tap-rtspstat.c
+++ b/ui/cli/tap-rtspstat.c
@@ -36,7 +36,7 @@
#include "register.h"
#include <epan/dissectors/packet-rtsp.h>
-void register_tap_listener_gtkrtspstat(void);
+void register_tap_listener_rtspstat(void);
/* used to keep track of the statictics for an entire program interface */
typedef struct _rtsp_stats_t {
@@ -228,10 +228,10 @@ rtspstat_draw(void *psp )
-/* When called, this function will create a new instance of gtk_rtspstat.
+/* When called, this function will create a new instance of rtspstat.
*/
static void
-gtk_rtspstat_init(const char *opt_arg, void *userdata _U_)
+rtspstat_init(const char *opt_arg, void *userdata _U_)
{
rtspstat_t *sp;
const char *filter = NULL;
@@ -277,14 +277,14 @@ static stat_tap_ui rtspstat_ui = {
REGISTER_STAT_GROUP_GENERIC,
NULL,
"rtsp,stat,",
- gtk_rtspstat_init,
+ rtspstat_init,
-1,
0,
NULL
};
void
-register_tap_listener_gtkrtspstat(void)
+register_tap_listener_rtspstat(void)
{
register_stat_tap_ui(&rtspstat_ui, NULL);
}