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 | 340403a70a161b5c8cb2c132c14845877b41b7ea (patch) | |
tree | 312605701133d8f10d56e3b8249064e77fbc23fc /src | |
parent | 6f2f8ec0725741301d9e1b498c488fa1c2aaddf5 (diff) |
Make CGI programs use Status header to set HTTP status code
Diffstat (limited to 'src')
-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; |