Fix fastcgi-authorizer handling; Status: 200 is now accepted as the doc requests
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2351 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
f786a82aa8
commit
2a765780da
1
NEWS
1
NEWS
|
@ -18,6 +18,7 @@ NEWS
|
|||
* Add possibility to disable methods in mod_compress (#1773)
|
||||
* Fix duplicate connection keep-alive/transfer-encoding headers (#960)
|
||||
* Fixed fix for round-robin in mod_proxy (forgot to increment the index) (#1715)
|
||||
* Fix fastcgi-authorizer handling; Status: 200 is now accepted as the doc requests
|
||||
|
||||
- 1.4.20 - 2008-09-30
|
||||
|
||||
|
|
|
@ -3252,6 +3252,7 @@ static handler_t fcgi_handle_fdevent(void *s, void *ctx, int revents) {
|
|||
fcgi_connection_close(srv, hctx);
|
||||
|
||||
con->mode = DIRECT;
|
||||
con->http_status = 0;
|
||||
con->file_started = 1; /* fcgi_extension won't touch the request afterwards */
|
||||
} else {
|
||||
/* we are done */
|
||||
|
|
Loading…
Reference in New Issue