One file affected: t/lib/cgi-function.t Here it is: --- t/lib/cgi-function.t.orig Mon Oct 30 17:30:17 2000 +++ t/lib/cgi-function.t Mon Oct 30 17:29:47 2000 @@ -36,6 +36,11 @@ if ($^O eq 'VMS') { $CRLF = "\n"; } +# Web servers on EBCDIC hosts are typically set up to do an EBCDIC -> ASCII +# translation hence CRLF is used as \r\n within CGI.pm on such machines. + +if (ord("\t") != 9) { $CRLF = "\r\n"; } + # Set up a CGI environment $ENV{REQUEST_METHOD}='GET'; $ENV{QUERY_STRING} ='game=chess&game=checkers&weather=dull'; End of Patch. Peter PrymmerThread Previous | Thread Next