summaryrefslogtreecommitdiff
path: root/ui/gtk/about_dlg.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-01-04 18:45:21 -0800
committerGuy Harris <guy@alum.mit.edu>2017-01-05 02:46:00 +0000
commit229f573846af147a73662e0ec68fec322c2f3b13 (patch)
tree46e31b566f8e59d1dc4c12daa0373342aafffb94 /ui/gtk/about_dlg.c
parent3f176f94e7b3939dbcc4f3195427345a077cbfb1 (diff)
downloadwireshark-229f573846af147a73662e0ec68fec322c2f3b13.tar.gz
Remove RA_CONFIGURATION.
It's not used at all in the Qt UI, and the point at which it's used in the GTK+ UI doesn't involve reading configuration files - between it and RA_INTERFACES, some mostly quick command-line argument processing is done. Change-Id: Ib4de97c8b6dba658a6e9d8f596b551f7c45739d2 Reviewed-on: https://code.wireshark.org/review/19551 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/gtk/about_dlg.c')
-rw-r--r--ui/gtk/about_dlg.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/ui/gtk/about_dlg.c b/ui/gtk/about_dlg.c
index 5568f602ff..cf2fb93589 100644
--- a/ui/gtk/about_dlg.c
+++ b/ui/gtk/about_dlg.c
@@ -242,9 +242,6 @@ splash_update(register_action_e action, const char *message, gpointer client_dat
case RA_INTERFACES:
action_msg = "Finding local interfaces ...";
break;
- case RA_CONFIGURATION:
- action_msg = "Loading configuration files ...";
- break;
default:
action_msg = "(Unknown action)";
break;
@@ -254,10 +251,10 @@ splash_update(register_action_e action, const char *message, gpointer client_dat
}
if(ul_count == 0) { /* get the count of dissectors */
- ul_count = register_count() + 7; /* additional 7 for:
+ ul_count = register_count() + 6; /* additional 7 for:
dissectors, listeners,
registering plugins, handingoff plugins,
- preferences, interfaces and configuration */
+ preferences, and interfaces */
#ifdef HAVE_LUA
ul_count += wslua_count_plugins (); /* get count of lua plugins */
#endif