aboutsummaryrefslogtreecommitdiffstats
path: root/src/config-ini.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-08 13:27:09 +0100
committerMattias Andrée <m@maandree.se>2025-03-08 13:27:09 +0100
commit6a6b10be7642e59ae40f9911282a8e2aa2601d82 (patch)
tree990f445224d9b1f692108965337bdc1dcb0fa3b1 /src/config-ini.c
parentUnlist redshift/issues/291: rejected: will not break backwards compatibility (diff)
downloadredshift-ng-6a6b10be7642e59ae40f9911282a8e2aa2601d82.tar.gz
redshift-ng-6a6b10be7642e59ae40f9911282a8e2aa2601d82.tar.bz2
redshift-ng-6a6b10be7642e59ae40f9911282a8e2aa2601d82.tar.xz
misc
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/config-ini.c')
-rw-r--r--src/config-ini.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config-ini.c b/src/config-ini.c
index db94f22..c524605 100644
--- a/src/config-ini.c
+++ b/src/config-ini.c
@@ -193,19 +193,19 @@ try_path(const struct env_path *path_spec, char **path_out)
stpcpy(&path[len], path_spec->suffix);
f = fopen(path, "r");
if (f) {
- weprintf(_("Found configuration file `%s'."));
+ weprintf(_("Found configuration file `%s'."), path);
break;
} else if (errno != ENOENT) {
- eprintf("fopen %s \"%s\":", path);
+ eprintf("fopen %s \"r\":", path);
}
}
} else {
stpcpy(stpcpy(path, prefix), path_spec->suffix);
f = fopen(path, "r");
if (f)
- weprintf(_("Found configuration file `%s'."));
+ weprintf(_("Found configuration file `%s'."), path);
else if (errno != ENOENT)
- eprintf("fopen %s \"%s\":", path);
+ eprintf("fopen %s \"r\":", path);
}
if (f) {