aboutsummaryrefslogtreecommitdiff
path: root/miscutils/man.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/man.c')
-rw-r--r--miscutils/man.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/miscutils/man.c b/miscutils/man.c
index 672ddb1c8..a4ff274d4 100644
--- a/miscutils/man.c
+++ b/miscutils/man.c
@@ -182,8 +182,12 @@ int man_main(int argc UNUSED_PARAM, char **argv)
182 pager = "more"; 182 pager = "more";
183 } 183 }
184 184
185 /* Parse man.conf */ 185 /* Parse man.conf[ig] */
186 parser = config_open2("/etc/man.conf", fopen_for_read); 186 /* man version 1.6f uses man.config */
187 parser = config_open2("/etc/man.config", fopen_for_read);
188 if (!parser)
189 parser = config_open2("/etc/man.conf", fopen_for_read);
190
187 while (config_read(parser, token, 2, 0, "# \t", PARSE_NORMAL)) { 191 while (config_read(parser, token, 2, 0, "# \t", PARSE_NORMAL)) {
188 if (!token[1]) 192 if (!token[1])
189 continue; 193 continue;