From b4d42ac5493d44c877d975d7632d0bab499fa258 Mon Sep 17 00:00:00 2001 From: Richard Bowen Date: Wed, 9 May 2012 02:39:55 +0000 Subject: [PATCH] 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 --- docs/manual/howto/cgi.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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>"; } -- 2.47.3