diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 6 | ||||
-rw-r--r-- | e-util/e-passwords.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 71e6c2c438..a9b57cd080 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,9 @@ +2004-10-07 Jeffrey Stedfast <fejj@novell.com> + + * e-passwords.c (ep_ask_password): Use "%s" as the formatter + argument and msg->prompt as a printf-style argument rather than + using it as the format string. Fixes bug #67622. + 2004-10-12 Not Zed <NotZed@Ximian.com> * e-config.c (ech_check, ech_config_factory, emph_construct_menu): diff --git a/e-util/e-passwords.c b/e-util/e-passwords.c index d64f7a33dc..6fe405ee50 100644 --- a/e-util/e-passwords.c +++ b/e-util/e-passwords.c @@ -428,7 +428,7 @@ ep_ask_password(EPassMsg *msg) 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_OK_CANCEL, - msg->prompt); + "%s", msg->prompt); gtk_window_set_title(GTK_WINDOW(password_dialog), msg->title); #if !GTK_CHECK_VERSION (2,4,0) |