aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/about_dlg.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gtk/about_dlg.c')
-rw-r--r--ui/gtk/about_dlg.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/gtk/about_dlg.c b/ui/gtk/about_dlg.c
index 802d9c6a79..5568f602ff 100644
--- a/ui/gtk/about_dlg.c
+++ b/ui/gtk/about_dlg.c
@@ -39,6 +39,9 @@
#ifdef HAVE_LUA
#include <epan/wslua/init_wslua.h>
#endif
+#ifdef HAVE_EXTCAP
+#include "../../extcap.h"
+#endif
#include "../../log.h"
#include "../../register.h"
@@ -258,6 +261,9 @@ splash_update(register_action_e action, const char *message, gpointer client_dat
#ifdef HAVE_LUA
ul_count += wslua_count_plugins (); /* get count of lua plugins */
#endif
+#ifdef HAVE_EXTCAP
+ ul_count += extcap_count(); /* get count of extcap binaries */
+#endif
}
main_lb = (GtkWidget *)g_object_get_data(G_OBJECT(win), "protocol_label");