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.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/parse_ini.c b/lib/parse_ini.c
index cd3d827..30b79d7 100644
--- a/lib/parse_ini.c
+++ b/lib/parse_ini.c
@@ -120,10 +120,7 @@ np_get_defaults(const char *locator, const char *default_section)
120 np_ini_info i; 120 np_ini_info i;
121 121
122 parse_locator(locator, default_section, &i); 122 parse_locator(locator, default_section, &i);
123 if (strcmp(i.file, "-") == 0) 123 inifile = strcmp(i.file, "-") == 0 ? stdin : fopen(i.file, "r");
124 inifile = stdin;
125 else
126 inifile = fopen(i.file, "r");
127 124
128 if (inifile == NULL) 125 if (inifile == NULL)
129 die(STATE_UNKNOWN, "%s\n", _("Can't read config file")); 126 die(STATE_UNKNOWN, "%s\n", _("Can't read config file"));