comparison src/http/modules/ngx_http_userid_filter_module.c @ 597:9262f520ce21 release-0.3.20

nginx-0.3.20-RELEASE import *) Bugfix: in SSI handling. *) Bugfix: the ngx_http_memcached_module did not support the keys in the "/usr?args" form.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 11 Jan 2006 15:26:57 +0000
parents 4e296b7d25bf
children e60fe4cf1d4e
comparison
equal deleted inserted replaced
596:0381e6d3aa70 597:9262f520ce21
211 { 211 {
212 ngx_int_t rc; 212 ngx_int_t rc;
213 ngx_http_userid_ctx_t *ctx; 213 ngx_http_userid_ctx_t *ctx;
214 ngx_http_userid_conf_t *conf; 214 ngx_http_userid_conf_t *conf;
215 215
216 if (r->main != r) { 216 if (r != r->main) {
217 return ngx_http_next_header_filter(r); 217 return ngx_http_next_header_filter(r);
218 } 218 }
219 219
220 conf = ngx_http_get_module_loc_conf(r, ngx_http_userid_filter_module); 220 conf = ngx_http_get_module_loc_conf(r, ngx_http_userid_filter_module);
221 221