aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/manpath.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-11-27 00:30:40 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-11-27 00:30:40 +0000
commit9fc2749bb963451e94e2b2163e7e5e43fcd6a264 (patch)
treea6076b72716d8cd6a1578e0d502a41b071e8f06b /manpath.c
parentcf199a76d662055ce96b65d3442832db41fbc63c (diff)
downloadmandoc-9fc2749bb963451e94e2b2163e7e5e43fcd6a264.tar.gz
mandoc-9fc2749bb963451e94e2b2163e7e5e43fcd6a264.tar.zst
mandoc-9fc2749bb963451e94e2b2163e7e5e43fcd6a264.zip
fix build when HAVE_MANPATH is set; patch from <bapt at FreeBSD>
Diffstat (limited to 'manpath.c')
-rw-r--r--manpath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/manpath.c b/manpath.c
index 9be143cc..e85175e9 100644
--- a/manpath.c
+++ b/manpath.c
@@ -1,4 +1,4 @@
-/* $Id: manpath.c,v 1.18 2014/11/18 19:41:47 schwarze Exp $ */
+/* $Id: manpath.c,v 1.19 2014/11/27 00:30:40 schwarze Exp $ */
/*
* Copyright (c) 2011, 2014 Ingo Schwarze <schwarze@openbsd.org>
* Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -80,7 +80,7 @@ manpath_parse(struct manpaths *dirs, const char *file,
if ( ! ferror(stream) && feof(stream) &&
bsz && '\n' == buf[bsz - 1]) {
buf[bsz - 1] = '\0';
- manpath_parseline(dirs, buf);
+ manpath_parseline(dirs, buf, 1);
}
free(buf);