From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]); by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 721b0c98; for ; Wed, 26 Nov 2014 19:30:40 -0500 (EST) Date: Wed, 26 Nov 2014 19:30:40 -0500 (EST) Message-Id: <7148290920393875860.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: fix build when HAVE_MANPATH is set; patch from X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- fix build when HAVE_MANPATH is set; patch from Modified Files: -------------- mdocml: manpath.c Revision Data ------------- Index: manpath.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/manpath.c,v retrieving revision 1.18 retrieving revision 1.19 diff -Lmanpath.c -Lmanpath.c -u -p -r1.18 -r1.19 --- manpath.c +++ manpath.c @@ -80,7 +80,7 @@ manpath_parse(struct manpaths *dirs, con 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); -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv