aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/export_sslkeys.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-02-21 01:00:44 +0000
committerGerald Combs <gerald@wireshark.org>2013-02-21 01:00:44 +0000
commitb0d958c4ed54dcd365e06997897475ddfc82baee (patch)
treea4bef63b6b3400569edc4891c1bf9fa9ed816348 /ui/gtk/export_sslkeys.c
parent63ef23bf5f9dc5cc3a765336e1e24075da2486c5 (diff)
Don't yell at the user quite so much. Remove exclamation points from
some error messages and rephrase some others. svn path=/trunk/; revision=47787
Diffstat (limited to 'ui/gtk/export_sslkeys.c')
-rw-r--r--ui/gtk/export_sslkeys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/export_sslkeys.c b/ui/gtk/export_sslkeys.c
index 7d0183dc0f..2d1c302e56 100644
--- a/ui/gtk/export_sslkeys.c
+++ b/ui/gtk/export_sslkeys.c
@@ -110,7 +110,7 @@ savesslkeys_save_clicked_cb(GtkWidget * w _U_, gpointer data _U_)
if (ssl_session_key_count() < 1) {
simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
- "No SSL Session Keys to export!");
+ "No SSL Session Keys to export.");
g_free(file);
return TRUE;
}
@@ -172,7 +172,7 @@ savesslkeys_cb(GtkWidget * w _U_, gpointer data _U_)
/* don't show up the dialog, if no data has to be saved */
if (keylist_len==0) {
/* shouldn't happen as the menu item should have been greyed out */
- simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "There are no SSL Session Keys to save!");
+ simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "There are no SSL Session Keys to save.");
return;
}