summaryrefslogtreecommitdiff
path: root/daemon/gdm-daemon-config.c
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2007-04-12 07:37:01 +0000
committerBrian Cameron <bcameron@src.gnome.org>2007-04-12 07:37:01 +0000
commitf3c47295d959f4ff0d506d08ba27b052aaee921e (patch)
tree8d20ab45c9ed7296725f8fcad2c8aa9ed420270d /daemon/gdm-daemon-config.c
parent52073db208dd0ccdc84a0181c36c6d88d9fc949e (diff)
downloadgdm-f3c47295d959f4ff0d506d08ba27b052aaee921e.tar.gz
Fix for bug #428630. This was introduced by Ludwig Nussel when he rewrote
2007-04-11 Brian Cameron <brian.cameron@sun.com> * daemon/verify-pam.c, daemon/verify-shadow.c, daemon/verify-crypt.c, daemon/verify.h, daemon/slave.c: Fix for bug #428630. This was introduced by Ludwig Nussel when he rewrote the way the PAM logic works. If you call gdm_verify_user with a userid, then it will allow you to retry 3 times without asking for password again to better support the Face Browser. However, when we ask for root password for the configurator, we don't want this behavior. This patch fixes this. * slave.c: Fix for bug #427022. The greeter was hanging when the Face Browser was turned on because we must use the socket to send face browser information before using the sockets for other purposes. * daemon/gdm-daemon-config.c, common/gdm-config.c: Fix g_debug call so we don't pass in a NULL string, which causes a SEGV on Solaris. * gui/gdmlangugaes.[ch]: Fix so that functions that don't return any useful information are now void, and remove meaningless debug from gdm_lang_op_always_restart. svn path=/trunk/; revision=4827
Diffstat (limited to 'daemon/gdm-daemon-config.c')
-rw-r--r--daemon/gdm-daemon-config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/gdm-daemon-config.c b/daemon/gdm-daemon-config.c
index afe0796e..2be22748 100644
--- a/daemon/gdm-daemon-config.c
+++ b/daemon/gdm-daemon-config.c
@@ -569,7 +569,7 @@ gdm_daemon_config_key_to_string (const gchar *file,
&key,
&locale,
NULL);
- g_debug ("Requesting group=%s key=%s locale=%s", group, key, locale);
+ g_debug ("Requesting group=%s key=%s locale=%s", group, key, locale ? locale : "(null)");
if (! res) {
gdm_error ("Could not parse configuration key %s", keystring);