summaryrefslogtreecommitdiffstats
path: root/lib/parse_ini.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parse_ini.c')
-rw-r--r--lib/parse_ini.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/parse_ini.c b/lib/parse_ini.c
index 86b94e7..25abc89 100644
--- a/lib/parse_ini.c
+++ b/lib/parse_ini.c
@@ -129,7 +129,8 @@ np_get_defaults(const char *locator, const char *default_section)
129 inifile = strcmp(i.file, "-") == 0 ? stdin : fopen(i.file, "r"); 129 inifile = strcmp(i.file, "-") == 0 ? stdin : fopen(i.file, "r");
130 130
131 if (inifile == NULL) 131 if (inifile == NULL)
132 die(STATE_UNKNOWN, "%s\n", _("Can't read config file")); 132 die(STATE_UNKNOWN, _("Can't read config file: %s\n"),
133 strerror(errno));
133 if (read_defaults(inifile, i.stanza, &defaults) == FALSE) 134 if (read_defaults(inifile, i.stanza, &defaults) == FALSE)
134 die(STATE_UNKNOWN, 135 die(STATE_UNKNOWN,
135 _("Invalid section '%s' in config file '%s'\n"), i.stanza, 136 _("Invalid section '%s' in config file '%s'\n"), i.stanza,