diff options
author | Adam Chlipala <adam@chlipala.net> | 2013-03-05 09:29:50 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2013-03-05 09:29:50 -0500 |
commit | 354528ee1640b958fcf8095d5fab1a82b82a6850 (patch) | |
tree | 312605701133d8f10d56e3b8249064e77fbc23fc /src/c/cgi.c | |
parent | 9cb1f02d81ab57e2d34e5b0cd1ed19c42dfaefab (diff) |
Make CGI programs use Status header to set HTTP status code
Diffstat (limited to 'src/c/cgi.c')
-rw-r--r-- | src/c/cgi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/cgi.c b/src/c/cgi.c index d3ec32c7..52c0ca2e 100644 --- a/src/c/cgi.c +++ b/src/c/cgi.c @@ -143,4 +143,4 @@ void uw_do_expunge(uw_context ctx, uw_Basis_client cli, void *data) { void uw_post_expunge(uw_context ctx, void *data) { } -int uw_supports_direct_status = 1; +int uw_supports_direct_status = 0; |