diff options
author | Igor Sysoev <igor@sysoev.ru> | 2005-07-25 09:41:38 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2005-07-25 09:41:38 +0000 |
commit | 90c081478175a94a995f8b4341c968c0395161b1 (patch) | |
tree | 6fef5fa6d488ed1ba47f0581876d56bf9c16db42 /src/http/ngx_http_core_module.c | |
parent | 9e7984ca78d0a8c39155dd24c8fe0f9a3765a51d (diff) | |
download | nginx-90c081478175a94a995f8b4341c968c0395161b1.tar.gz nginx-90c081478175a94a995f8b4341c968c0395161b1.zip |
nginx-0.1.40-RELEASE importrelease-0.1.40
*) Bugfix: if a client sent too long header line, then the request
information did not logged in the error log.
*) Bugfix: the "Set-Cookie" header line was not transferred when the
"X-Accel-Redirect" was used; the bug had appeared in 0.1.39.
*) Bugfix: the "Content-Disposition" header line was not transferred
when the "X-Accel-Redirect" was used.
*) Bugfix: the master process did not close the listen socket on the
SIGQUIT signal.
*) Bugfix: after on-line upgrade on Linux and Solaris the process name
became shorter in the "ps" command.
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index ad5058512..cb7c9e8d0 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -886,18 +886,6 @@ ngx_http_output_filter(ngx_http_request_t *r, ngx_chain_t *in) ngx_int_t -ngx_http_redirect(ngx_http_request_t *r, int redirect) -{ - /* STUB */ - - /* log request */ - - ngx_http_close_request(r, 0); - return NGX_OK; -} - - -ngx_int_t ngx_http_set_exten(ngx_http_request_t *r) { ngx_int_t i; |