comparison src/http/modules/ngx_http_userid_filter_module.c @ 146:36af50a5582d NGINX_0_3_20

nginx 0.3.20 *) Bugfix: in SSI handling. *) Bugfix: the ngx_http_memcached_module did not support the keys in the "/usr?args" form.
author Igor Sysoev <http://sysoev.ru>
date Wed, 11 Jan 2006 00:00:00 +0300
parents 91372f004adf
children 54aabf2b0bc6
comparison
equal deleted inserted replaced
145:85a84f8da62b 146:36af50a5582d
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