mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Linux shell scripts used as CGI process must still return \r\n at the end of header lines
This commit is contained in:
parent
62a66c43e5
commit
a6eb2d232f
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
echo "Content-Type: text/plain"
|
printf "Content-Type: text/plain\r\n"
|
||||||
echo
|
printf "\r\n"
|
||||||
|
|
||||||
echo "This is a shell script called by CGI:"
|
echo "This is a shell script called by CGI:"
|
||||||
echo
|
echo
|
||||||
|
@ -983,10 +983,10 @@ START_TEST(test_request_handlers)
|
|||||||
#else
|
#else
|
||||||
f = fopen("test.cgi", "w");
|
f = fopen("test.cgi", "w");
|
||||||
cgi_script_content = "#!/bin/sh\n\n"
|
cgi_script_content = "#!/bin/sh\n\n"
|
||||||
"echo \"Connection: close\"\n"
|
"printf \"Connection: close\\r\\n\"\n"
|
||||||
"echo \"Content-Type: text/plain\"\n"
|
"printf \"Content-Type: text/plain\\r\\n\"\n"
|
||||||
"echo\n"
|
"printf \"\\r\\n\"\n"
|
||||||
"echo \"CGI test\"\n"
|
"printf \"CGI test\\r\\n\"\n"
|
||||||
"\n";
|
"\n";
|
||||||
fwrite(cgi_script_content, strlen(cgi_script_content), 1, f);
|
fwrite(cgi_script_content, strlen(cgi_script_content), 1, f);
|
||||||
fclose(f);
|
fclose(f);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user