From: Richard Bowen Date: Wed, 9 May 2012 02:39:55 +0000 (+0000) Subject: Might as well be pedantic while we're at it. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4d42ac5493d44c877d975d7632d0bab499fa258;p=thirdparty%2Fapache%2Fhttpd.git Might as well be pedantic while we're at it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1335903 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/cgi.xml b/docs/manual/howto/cgi.xml index bf6f4dc6c84..cd3a17d5280 100644 --- a/docs/manual/howto/cgi.xml +++ b/docs/manual/howto/cgi.xml @@ -234,7 +234,7 @@ #!/usr/bin/perl -print "Content-type: text/html\n\n"; +print "Content-type: text/html\r\n\r\n"; print "Hello, World."; @@ -488,7 +488,7 @@ print "Hello, World."; use strict; use warnings; -print "Content-type: text/html\n\n"; +print "Content-type: text/html\r\n\r\n"; foreach my $key (keys %ENV) { print "$key --> $ENV{$key}<br>"; }