diff options
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; |