diff options
author | Brian Cameron <brian.cameron@sun.com> | 2006-06-19 18:55:20 +0000 |
---|---|---|
committer | Brian Cameron <bcameron@src.gnome.org> | 2006-06-19 18:55:20 +0000 |
commit | 103cb938463d6ac59b9674b7c46f8175286277a8 (patch) | |
tree | 0924ef680a285a14e704cc5ce630ee94d135208f /gui | |
parent | a33b7a6405f991a6cd6fcd3d7c2cd105ed576f70 (diff) | |
download | gdm-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.c | 2 |
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")); |