summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2011-07-13 12:49:24 -0400
committerRay Strode <rstrode@redhat.com>2011-07-13 12:52:23 -0400
commit9e50c1457713aab3f6341d165b0e600a0938f4ec (patch)
tree1dc05a091bc9f1cfef48592ccf4717d2b747b6aa /common
parentfdfd22416325628441d1bc7f55063c494752f1e4 (diff)
downloadgdm-9e50c1457713aab3f6341d165b0e600a0938f4ec.tar.gz
daemon: fix gdm_settings_direct_get_string
It was failing when pulling from defaults before. This fixes XDMCP for people who don't manually set the string options.
Diffstat (limited to 'common')
-rw-r--r--common/gdm-settings-direct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/gdm-settings-direct.c b/common/gdm-settings-direct.c
index a90eed23..b1b66fbe 100644
--- a/common/gdm-settings-direct.c
+++ b/common/gdm-settings-direct.c
@@ -190,7 +190,7 @@ gdm_settings_direct_get_string (const char *key,
assert_signature (entry, "s");
- ret = FALSE;
+ ret = TRUE;
res = get_value (key, &str);