aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tap.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/tap.c')
-rw-r--r--epan/tap.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/epan/tap.c b/epan/tap.c
index 77e6ffcaa7..87f46aca38 100644
--- a/epan/tap.c
+++ b/epan/tap.c
@@ -40,6 +40,7 @@
#include <epan/dfilter/dfilter.h>
#include <epan/tap.h>
#include <wsutil/ws_printf.h> /* ws_g_warning */
+#include <wsutil/glib-compat.h>
static gboolean tapping_is_active=FALSE;
@@ -772,12 +773,7 @@ void tap_cleanup(void)
}
#ifdef HAVE_PLUGINS
-#if GLIB_CHECK_VERSION(2, 28, 0)
g_slist_free_full(tap_plugins, tap_plugin_destroy);
-#else
- g_slist_foreach(tap_plugins, (GFunc)tap_plugin_destroy, NULL);
- g_slist_free(tap_plugins);
-#endif
#endif /* HAVE_PLUGINS */
}