diff options
author | Ted Gould <ted@canonical.com> | 2009-09-24 10:40:33 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-09-24 10:40:33 -0500 |
commit | e94767722dc9204bf00e845c4cb94400a9743cac (patch) | |
tree | 011e607459a6929de6ad752ff434a308d30e515b /src/session-service.c | |
parent | 94de1260bb02a05967334b9720f9ccddafa109b5 (diff) | |
download | ayatana-indicator-session-e94767722dc9204bf00e845c4cb94400a9743cac.tar.gz ayatana-indicator-session-e94767722dc9204bf00e845c4cb94400a9743cac.tar.bz2 ayatana-indicator-session-e94767722dc9204bf00e845c4cb94400a9743cac.zip |
Wrong string! Oops.
Diffstat (limited to 'src/session-service.c')
-rw-r--r-- | src/session-service.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/session-service.c b/src/session-service.c index 89d4655..b1a6920 100644 --- a/src/session-service.c +++ b/src/session-service.c @@ -46,7 +46,7 @@ static DBusGProxy * dkp_prop_proxy = NULL; static DBusGProxy * gdm_settings_proxy = NULL; static gboolean gdm_auto_login = FALSE; -static const gchar * gdm_auto_login_string = "daemon/TimedLoginEnable"; +static const gchar * gdm_auto_login_string = "daemon/AutomaticLoginEnable"; static DBusGProxyCall * suspend_call = NULL; static DBusGProxyCall * hibernate_call = NULL; @@ -68,6 +68,7 @@ gdm_settings_change (DBusGProxy * proxy, const gchar * value, const gchar * old, there is only one. */ return; } + g_debug("GDM Settings change: %s", new); if (g_strcmp0(new, "true") == 0) { gdm_auto_login = TRUE; |