aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-01-12 21:57:20 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-01-12 21:57:20 +0000
commita1e82cca224fd827ca806dddaebc31d403c909ac (patch)
tree157158fbec0cdf055ccdc7cf82bb318495544438
parent8785136a922a6448ac6c735a62541fbe5f0178ba (diff)
downloadnginx-a1e82cca224fd827ca806dddaebc31d403c909ac.tar.gz
nginx-a1e82cca224fd827ca806dddaebc31d403c909ac.zip
style fix
-rw-r--r--src/http/ngx_http_core_module.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c
index 34149c49f..2bff24560 100644
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -935,7 +935,8 @@ ngx_http_core_find_location(ngx_http_request_t *r,
if (clcfp[i]->auto_redirect
&& r->uri.len == clcfp[i]->name.len - 1
&& ngx_strncmp(r->uri.data, clcfp[i]->name.data,
- clcfp[i]->name.len - 1) == 0)
+ clcfp[i]->name.len - 1)
+ == 0)
{
/* the locations are lexicographically sorted */