From: Rich Bowen Date: Wed, 9 May 2012 02:39:55 +0000 (+0000) Subject: Might as well be pedantic while we're at it. X-Git-Tag: 2.5.0-alpha~6856 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0f7e39442bdb6e26c042df7378929866aa725173;p=apache 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 bf6f4dc6c8..cd3a17d528 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>"; }