summaryrefslogtreecommitdiff
path: root/ui/recent.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-02-20 18:46:08 -0800
committerGuy Harris <guy@alum.mit.edu>2017-02-21 02:46:26 +0000
commit2798f7c9c4a691a91b19c9ed50dbcf1c151325af (patch)
tree1678148b7a3939ece2be8b53efc297a996682ce1 /ui/recent.c
parent72e2c3acfac3f56d1b6276d6cbbf55695da849b4 (diff)
downloadwireshark-2798f7c9c4a691a91b19c9ed50dbcf1c151325af.tar.gz
Have all the remote host list routines' names begin with recent_.
Some did, some didn't - make it consistent. Clean up some header comments while we're at it. Change-Id: I978c84167cce3c8f1c0280898aa4d0b60958325b Reviewed-on: https://code.wireshark.org/review/20218 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/recent.c')
-rw-r--r--ui/recent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/recent.c b/ui/recent.c
index 3408cd8405..aaad91b0ad 100644
--- a/ui/recent.c
+++ b/ui/recent.c
@@ -413,7 +413,7 @@ free_remote_host (gpointer key _U_, gpointer value, gpointer user _U_)
}
void
-remote_host_list_foreach(GHFunc func, gpointer user_data)
+recent_remote_host_list_foreach(GHFunc func, gpointer user_data)
{
if (remote_host_list != NULL)
g_hash_table_foreach(remote_host_list, func, user_data);
@@ -438,7 +438,7 @@ capture_remote_combo_recent_write_all(FILE *rf)
}
-void free_remote_host_list(void)
+void recent_free_remote_host_list(void)
{
g_hash_table_foreach_remove(remote_host_list, free_remote_host, NULL);
}