randyk 2004/07/10 18:38:26
Modified: env/t cgi.t Log: Reviewed by: joes With the use of apr_file_printf, rather than just printf, to print to stdout in env/test_cgi.c, the line-ending distinction for Win32 in env/t/cgi.t isn't needed any more. Revision Changes Path 1.4 +1 -1 httpd-apreq-2/env/t/cgi.t Index: cgi.t =================================================================== RCS file: /home/cvs/httpd-apreq-2/env/t/cgi.t,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- cgi.t 11 Jun 2004 17:43:07 -0000 1.3 +++ cgi.t 11 Jul 2004 01:38:26 -0000 1.4 @@ -21,7 +21,7 @@ my $location = '/cgi-bin'; my $script = $location . (WIN32 ? '/test_cgi.exe' : '/test_cgi'); -my $line_end = WIN32 ? "\r\n" : "\n"; +my $line_end = "\n"; my $filler = "0123456789" x 20; # < 64K # GET
