From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id s6C1tUIS008785 for ; Fri, 11 Jul 2014 21:55:30 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id s6C1tUZr018764; Fri, 11 Jul 2014 21:55:30 -0400 (EDT) Date: Fri, 11 Jul 2014 21:55:30 -0400 (EDT) Message-Id: <201407120155.s6C1tUZr018764@krisdoz.my.domain> 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 two manual links on the index page X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- fix the two manual links on the index page Modified Files: -------------- mdocml: cgi.c Revision Data ------------- Index: cgi.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/cgi.c,v retrieving revision 1.63 retrieving revision 1.64 diff -Lcgi.c -Lcgi.c -u -p -r1.63 -r1.64 --- cgi.c +++ cgi.c @@ -415,13 +415,14 @@ resp_index(const struct req *req) "mandoc\n" ""); resp_searchform(req); - puts("

\n" - "This web interface is documented in the " - "" - "man.cgi manual, and the " - "" - "apropos manual explains the query syntax.\n" - "

"); + printf("

\n" + "This web interface is documented in the " + "" + "man.cgi manual, and the " + "" + "apropos manual explains the query syntax.\n" + "

\n", + scriptname, scriptname); resp_end_html(); } -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv