Get rid of an unused routine.

svn path=/trunk/; revision=49521
This commit is contained in:
Guy Harris 2013-05-22 20:22:40 +00:00
parent 48effa3ac2
commit eb56f6fb96
2 changed files with 0 additions and 10 deletions

View File

@ -1293,13 +1293,6 @@ tap_update_cb(gpointer data _U_)
return TRUE;
}
/* Restart the tap update display timer with new configured interval */
void reset_tap_update_timer(void)
{
g_source_remove(tap_update_timer_id);
tap_update_timer_id = g_timeout_add(prefs.tap_update_interval, tap_update_cb, NULL);
}
/*
* Periodically process outstanding hostname lookups. If we have new items,
* redraw the packet list and tree view.

View File

@ -350,9 +350,6 @@ extern gboolean main_filter_packets(capture_file *cf, const gchar *dftext,
#ifdef _WIN32
/** Win32 only: Create a console. Beware: cannot be closed again. */
extern void create_console(void);
/** Restart the tap update display timer with new configured interval */
extern void reset_tap_update_timer(void);
#endif
/** Change configuration profile */