summaryrefslogtreecommitdiff
path: root/ui/gtk/about_dlg.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2013-08-13 10:38:30 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2013-08-13 10:38:30 +0000
commita31a88b142a3deba29ea01b28766cdfcce69269b (patch)
tree50e57535f6ba1fde1de89e7ca3de4d6825835864 /ui/gtk/about_dlg.c
parentbae2eee028334f658363709fb65b79eff1a8ecb5 (diff)
downloadwireshark-a31a88b142a3deba29ea01b28766cdfcce69269b.tar.gz
Show the Lua plugin being loaded in the splash screen.
svn path=/trunk/; revision=51335
Diffstat (limited to 'ui/gtk/about_dlg.c')
-rw-r--r--ui/gtk/about_dlg.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/gtk/about_dlg.c b/ui/gtk/about_dlg.c
index d22837946d..906c0717d0 100644
--- a/ui/gtk/about_dlg.c
+++ b/ui/gtk/about_dlg.c
@@ -37,6 +37,9 @@
#ifdef HAVE_GEOIP
#include <epan/geoip_db.h>
#endif
+#ifdef HAVE_LUA
+#include <epan/wslua/init_wslua.h>
+#endif
#include "../log.h"
#include "../version_info.h"
@@ -248,7 +251,7 @@ splash_update(register_action_e action, const char *message, gpointer client_dat
registering plugins, handingoff plugins,
preferences and configuration */
#ifdef HAVE_LUA
- ul_count++; /* additional one for lua plugins */
+ ul_count += wslua_count_plugins (); /* get count of lua plugins */
#endif
#ifdef HAVE_PYTHON
ul_count += 2; /* additional 2 for python register and handoff */