From 9fc2749bb963451e94e2b2163e7e5e43fcd6a264 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Thu, 27 Nov 2014 00:30:40 +0000 Subject: fix build when HAVE_MANPATH is set; patch from --- manpath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'manpath.c') 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 * Copyright (c) 2011 Kristaps Dzonsons @@ -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); -- cgit v1.2.3