diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2010-06-25 12:06:37 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2010-06-25 12:06:37 +0000 |
| commit | 55c3f1b31beab3c033d3e685d46517319a196df6 (patch) | |
| tree | 94bed5bbfb87162c7045c4ed4441cb8e067a28c2 /src | |
| parent | 23d053fa97d46b6ccfc97ed02e54ec0525d77dfd (diff) | |
| download | nginx-55c3f1b31beab3c033d3e685d46517319a196df6.tar.gz nginx-55c3f1b31beab3c033d3e685d46517319a196df6.tar.bz2 | |
make logic more clear
Diffstat (limited to 'src')
| -rw-r--r-- | src/http/modules/ngx_http_userid_filter_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |
