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 6129cdc0 for ; Sun, 11 Sep 2016 19:06:51 -0500 (EST) Date: Sun, 11 Sep 2016 19:06:51 -0500 (EST) Message-Id: <5203002995927852985.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: use the proper HTML escape for double quote ("): " not X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- use the proper HTML escape for double quote ("): " not "e; patch from bentley@ Modified Files: -------------- mdocml: cgi.c Revision Data ------------- Index: cgi.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/cgi.c,v retrieving revision 1.140 retrieving revision 1.141 diff -Lcgi.c -Lcgi.c -u -p -r1.140 -r1.141 --- cgi.c +++ cgi.c @@ -138,7 +138,7 @@ html_putchar(char c) switch (c) { case ('"'): - printf(""e;"); + printf("""); break; case ('&'): printf("&"); -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv