From 55c3f1b31beab3c033d3e685d46517319a196df6 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 25 Jun 2010 12:06:37 +0000 Subject: make logic more clear --- src/http/modules/ngx_http_userid_filter_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/http/modules/ngx_http_userid_filter_module.c b/src/http/modules/ngx_http_userid_filter_module.c index 8304e0bcb..6294628e7 100644 --- a/src/http/modules/ngx_http_userid_filter_module.c +++ b/src/http/modules/ngx_http_userid_filter_module.c @@ -199,7 +199,7 @@ ngx_http_userid_filter(ngx_http_request_t *r) conf = ngx_http_get_module_loc_conf(r, ngx_http_userid_filter_module); - if (conf->enable <= NGX_HTTP_USERID_LOG) { + if (conf->enable < NGX_HTTP_USERID_V1) { return ngx_http_next_header_filter(r); } -- cgit