comparison src/http/ngx_http_core_module.c @ 604:611ebd77621d NGINX_0_8_54

nginx 0.8.54 *) Bugfix: if there was a single server for given IPv6 address:port pair, then captures in regular expressions in a "server_name" directive did not work. *) Bugfix: a segmentation fault might occur in a worker process, if the "auth_basic" directive was used. Thanks to Michail Laletin. *) Bugfix: compatibility with ngx_http_eval_module; the bug had appeared in 0.8.42.
author Igor Sysoev <http://sysoev.ru>
date Tue, 14 Dec 2010 00:00:00 +0300
parents c5122335e41d
children
comparison
equal deleted inserted replaced
603:94ea26a3b3aa 604:611ebd77621d
908 if (rc == NGX_DECLINED) { 908 if (rc == NGX_DECLINED) {
909 r->phase_handler++; 909 r->phase_handler++;
910 return NGX_AGAIN; 910 return NGX_AGAIN;
911 } 911 }
912 912
913 /* rc == NGX_OK || rc == NGX_ERROR || rc == NGX_HTTP_... */ 913 if (rc == NGX_DONE) {
914 return NGX_OK;
915 }
916
917 /* NGX_OK, NGX_AGAIN, NGX_ERROR, NGX_HTTP_... */
914 918
915 ngx_http_finalize_request(r, rc); 919 ngx_http_finalize_request(r, rc);
916 920
917 return NGX_OK; 921 return NGX_OK;
918 } 922 }