diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2013-10-18 18:13:35 +0400 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2013-10-18 18:13:35 +0400 |
commit | 0ca52adff69a5f4c59172127aaf94c7162da7823 (patch) | |
tree | f661e74c632cd6c9bb620c430fedd6956b18d0ea /src | |
parent | 79be6a5462498af8655aaed141f13a1d2a34abc8 (diff) | |
download | nginx-0ca52adff69a5f4c59172127aaf94c7162da7823.tar.gz nginx-0ca52adff69a5f4c59172127aaf94c7162da7823.zip |
Style.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http_script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_script.c b/src/http/ngx_http_script.c index 5fc4cfca0..02e2be3bb 100644 --- a/src/http/ngx_http_script.c +++ b/src/http/ngx_http_script.c @@ -1394,7 +1394,7 @@ ngx_http_script_if_code(ngx_http_script_engine_t *e) e->sp--; - if (e->sp->len && (e->sp->len !=1 || e->sp->data[0] != '0')) { + if (e->sp->len && (e->sp->len != 1 || e->sp->data[0] != '0')) { if (code->loc_conf) { e->request->loc_conf = code->loc_conf; ngx_http_update_location_config(e->request); |