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 ff756e9c; for ; Tue, 28 Apr 2015 11:14:15 -0500 (EST) Date: Tue, 28 Apr 2015 11:14:15 -0500 (EST) Message-Id: <13888632599824441862.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 the HAVE_MANPATH case, got broken in rev. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Fix the HAVE_MANPATH case, got broken in rev. 1.23. Patch from Steffen Nurpmeso , thanks. Modified Files: -------------- mdocml: manpath.c Revision Data ------------- Index: manpath.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/manpath.c,v retrieving revision 1.23 retrieving revision 1.24 diff -Lmanpath.c -Lmanpath.c -u -p -r1.23 -r1.24 --- manpath.c +++ manpath.c @@ -78,7 +78,7 @@ manconf_parse(struct manconf *conf, cons 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); -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv