aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/man.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/miscutils/man.c b/miscutils/man.c
index df00c3ee7..7ef5941a1 100644
--- a/miscutils/man.c
+++ b/miscutils/man.c
@@ -106,7 +106,9 @@ int man_main(int argc UNUSED_PARAM, char **argv)
106 if (parser) { 106 if (parser) {
107 /* go through man configuration file and search relevant paths, sections */ 107 /* go through man configuration file and search relevant paths, sections */
108 char *token[2]; 108 char *token[2];
109 while (config_read(parser, token, 2, 2, "# \t", PARSE_LAST_IS_GREEDY)) { 109 while (config_read(parser, token, 2, 0, "# \t", PARSE_LAST_IS_GREEDY)) {
110 if (!token[1])
111 continue;
110 if (strcmp("MANPATH", token[0]) == 0) { 112 if (strcmp("MANPATH", token[0]) == 0) {
111 man_path_list[count_mp] = xstrdup(token[1]); 113 man_path_list[count_mp] = xstrdup(token[1]);
112 count_mp++; 114 count_mp++;