summaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2006-06-19 18:55:20 +0000
committerBrian Cameron <bcameron@src.gnome.org>2006-06-19 18:55:20 +0000
commit103cb938463d6ac59b9674b7c46f8175286277a8 (patch)
tree0924ef680a285a14e704cc5ce630ee94d135208f /gui
parenta33b7a6405f991a6cd6fcd3d7c2cd105ed576f70 (diff)
downloadgdm-103cb938463d6ac59b9674b7c46f8175286277a8.tar.gz
Fix bug that causes gdmsetup to not fail properly when there is no custom
2006-06-19 Brian Cameron <brian.cameron@sun.com> * gui/gdmsetup.c: Fix bug that causes gdmsetup to not fail properly when there is no custom config file.
Diffstat (limited to 'gui')
-rw-r--r--gui/gdmsetup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/gdmsetup.c b/gui/gdmsetup.c
index 93b73ea6..de7a2e85 100644
--- a/gui/gdmsetup.c
+++ b/gui/gdmsetup.c
@@ -6474,7 +6474,7 @@ main (int argc, char *argv[])
exit (EXIT_FAILURE);
}
custom_config_file = gdm_common_get_custom_config_file ();
- if (config_file == NULL) {
+ if (custom_config_file == NULL) {
/* Done using socket */
gdmcomm_comm_bulk_stop ();
g_print (_("Could not access GDM configuration file.\n"));