summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlban Browaeys <alban.browaeys@gmail.com>2023-04-04 17:54:51 +0200
committerRay Strode <halfline@gmail.com>2023-04-12 20:03:08 +0000
commit97a346ca016e7a0d7c7c1f9c97eb8be95d324fc6 (patch)
tree284627a577ba2e81bad4dd3a0a8f2c32fc8c0121
parent99aa57bfa59e2578c4ef47e84338f7de85c6f61b (diff)
downloadaccountsservice-97a346ca016e7a0d7c7c1f9c97eb8be95d324fc6.tar.gz
Remove last hardcoded custom.conf reference
Fixes #41 "Customize PATH_GDM_CUSTOM via the configure script".
-rw-r--r--src/daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon.c b/src/daemon.c
index aa9d050..1ad7be6 100644
--- a/src/daemon.c
+++ b/src/daemon.c
@@ -1824,7 +1824,7 @@ save_autologin_gdm (Daemon *daemon,
PATH_GDM_CUSTOM,
G_KEY_FILE_KEEP_COMMENTS,
&local_error)) {
- /* It's OK for custom.conf to not exist, we will make it */
+ /* It's OK if the GDM config file doesn't exist, since we will make it, if necessary */
if (!g_error_matches (local_error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) {
g_propagate_error (error, g_steal_pointer (&local_error));
return FALSE;