Get rid of another unused routine.

Change-Id: I58943faaf6e77023ab1fb7bd7a22324a713659da
Reviewed-on: https://code.wireshark.org/review/2714
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-06-30 01:13:57 -07:00
parent 241862a47a
commit 01c9ac8d61
1 changed files with 0 additions and 20 deletions

View File

@ -348,26 +348,6 @@ get_interface_descriptive_name(const char *if_name)
return descr;
}
/* search interface info by interface name */
static if_info_t *
search_info(GList *if_list, gchar *if_name)
{
GList *if_entry;
if_info_t *if_info;
for (if_entry = if_list; if_entry != NULL; if_entry = g_list_next(if_entry)) {
if_info = (if_info_t *)if_entry->data;
if(strcmp(if_name, if_info->name) == 0) {
return if_info;
}
}
return NULL;
}
GList *
build_capture_combo_list(GList *if_list, gboolean do_hide)
{