diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-04-28 16:13:45 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-04-28 16:13:45 +0000 |
commit | 45fb847f6e6ad5ace6f8302551749b3e24158d7d (patch) | |
tree | 7fc0aacd12cd6a9f71f295679bbc713da961fe93 /manpath.c | |
parent | 16ee2910b2d5d0fad6b303e92efff26c0543db03 (diff) | |
download | mandoc-45fb847f6e6ad5ace6f8302551749b3e24158d7d.tar.gz |
Fix the HAVE_MANPATH case, got broken in rev. 1.23.
Patch from Steffen Nurpmeso <sdaoden at yandex dot com>, thanks.
Diffstat (limited to 'manpath.c')
-rw-r--r-- | manpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ manconf_parse(struct manconf *conf, const char *file, if ( ! ferror(stream) && feof(stream) && bsz && '\n' == buf[bsz - 1]) { buf[bsz - 1] = '\0'; - manpath_parseline(dirs, buf, 1); + manpath_parseline(&conf->manpath, buf, 1); } free(buf); |