Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-06-18 19:15:20 +0400
committerIgor Sysoev <igor@sysoev.ru>2010-06-18 19:15:20 +0400
commit4c1b0770ca0944cbb81493333719284ea7d20b4b (patch)
tree4564bdce609fd955c32bc02aa3989d0a0c5de66b /src/http/ngx_http.c
parent01213e18a7a60d8e8baac41f0b1481ac8d6bfd43 (diff)
return code text
Diffstat (limited to 'src/http/ngx_http.c')
-rw-r--r--src/http/ngx_http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c
index 4c856840b..84867887d 100644
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -509,7 +509,7 @@ ngx_http_init_phase_handlers(ngx_conf_t *cf, ngx_http_core_main_conf_t *cmcf)
if (cmcf->phase_engine.server_rewrite_index == (ngx_uint_t) -1) {
cmcf->phase_engine.server_rewrite_index = n;
}
- checker = ngx_http_core_generic_phase;
+ checker = ngx_http_core_rewrite_phase;
break;
@@ -526,7 +526,7 @@ ngx_http_init_phase_handlers(ngx_conf_t *cf, ngx_http_core_main_conf_t *cmcf)
if (cmcf->phase_engine.location_rewrite_index == (ngx_uint_t) -1) {
cmcf->phase_engine.location_rewrite_index = n;
}
- checker = ngx_http_core_generic_phase;
+ checker = ngx_http_core_rewrite_phase;
break;