summaryrefslogtreecommitdiff
path: root/ui/gtk/about_dlg.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2017-02-06 12:53:18 -0800
committerAnders Broman <a.broman58@gmail.com>2017-02-07 05:15:59 +0000
commit912aaf0304b2bc8e7a559825a379f262bffca129 (patch)
tree5f3792b7e4595394c6dbca1d11b3bd274ba53f83 /ui/gtk/about_dlg.c
parente9cf760c0cc3fea14404ab6e43b72d52fd016483 (diff)
downloadwireshark-912aaf0304b2bc8e7a559825a379f262bffca129.tar.gz
Adjust startup count for extcap.
The number of extcap splash items is the number of extcap binaries plus RA_EXTCAP. Change-Id: I9702da5a94e244ddd95a845a67da9302ee41c826 Reviewed-on: https://code.wireshark.org/review/19981 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/gtk/about_dlg.c')
-rw-r--r--ui/gtk/about_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/about_dlg.c b/ui/gtk/about_dlg.c
index 30a863c5bf..020452c1ca 100644
--- a/ui/gtk/about_dlg.c
+++ b/ui/gtk/about_dlg.c
@@ -259,7 +259,7 @@ splash_update(register_action_e action, const char *message, gpointer client_dat
ul_count += wslua_count_plugins (); /* get count of lua plugins */
#endif
#ifdef HAVE_EXTCAP
- ul_count += extcap_count(); /* get count of extcap binaries */
+ ul_count += extcap_count() + 1; /* Count of extcap binaries + registration message */
#endif
}