diff options
Diffstat (limited to 'src/config-ini.c')
-rw-r--r-- | src/config-ini.c | 8 |
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) { |