From 9fb5e89da469e9b0d1aa8b378d058a3b45a87b8a Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Thu, 10 May 2007 04:41:32 +0000 Subject: Oops, fix config call to work. 2007-05-10 Brian Cameron * daemon/slave.c: Oops, fix config call to work. svn path=/branches/gnome-2-18/; revision=4910 --- ChangeLog | 4 ++++ daemon/slave.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1b735faa..f5859253 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-05-10 Brian Cameron + + * daemon/slave.c: Oops, fix config call to work. + 2007-05-10 Brian Cameron * daemon/slave.c: Fix handling of AlwaysLoginCurrentSession and diff --git a/daemon/slave.c b/daemon/slave.c index 4cb2e38d..c794e3df 100644 --- a/daemon/slave.c +++ b/daemon/slave.c @@ -1144,7 +1144,7 @@ ask_migrate (const char *migrate_to) * the dialog. */ if (migrate_to != NULL && - gdm_daemon_config_get_value_bool (GDM_KEY_ALWAYS_LOGIN_CURRENT_SESSION)) { + gdm_get_value_bool (GDM_KEY_ALWAYS_LOGIN_CURRENT_SESSION)) { return 1; } @@ -1152,7 +1152,7 @@ ask_migrate (const char *migrate_to) * Avoid dialog if DOUBLE_LOGIN_WARNING is false. In this case * ALWAYS_LOGIN_CURRENT_SESSION is false, so assume new session. */ - if (!gdm_daemon_config_get_value_bool (GDM_KEY_DOUBLE_LOGIN_WARNING)) { + if (!gdm_get_value_bool (GDM_KEY_DOUBLE_LOGIN_WARNING)) { return 0; } -- cgit v1.2.1