[gnome-keyring] [daemon] No possibly fatal error when can't unlock login keyring.



commit 2bcaa443eeee7f2b4bd5ffc56d911d77bd6f9d70
Author: Stef Walter <stef memberwebs com>
Date:   Tue Nov 24 16:19:35 2009 +0000

    [daemon] No possibly fatal error when can't unlock login keyring.
    
    We were using g_warning to print a message when unlocking the
    login keyring failed. This would cause the daemon to exit in
    certain configurations. This isn't a critical error.

 daemon/gkr-daemon.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/daemon/gkr-daemon.c b/daemon/gkr-daemon.c
index a2107d9..7633c68 100644
--- a/daemon/gkr-daemon.c
+++ b/daemon/gkr-daemon.c
@@ -846,7 +846,7 @@ main (int argc, char *argv[])
 	 */
 	if (login_password) {
 		if (!gkr_keyring_login_unlock (login_password))
-			g_warning ("Failed to unlock login on startup");
+			g_message ("Failed to unlock login on startup");
 		egg_secure_strclear (login_password);
 	}
 	



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]