aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_core_module.h
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-06-05 11:42:59 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-06-05 11:42:59 +0000
commit6633572f3118a4c4814699e32ea0671b8b64109c (patch)
tree20990ab3ba5c3007f0ff0c8bebb22ea93669300a /src/http/ngx_http_core_module.h
parentc915106f20629a3306fae10db413d5d596c1fc3e (diff)
downloadnginx-6633572f3118a4c4814699e32ea0671b8b64109c.tar.gz
nginx-6633572f3118a4c4814699e32ea0671b8b64109c.zip
use pointer to an array instead of array for inclusive locations inside location
Diffstat (limited to 'src/http/ngx_http_core_module.h')
-rw-r--r--src/http/ngx_http_core_module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.h b/src/http/ngx_http_core_module.h
index 9a8d62938..db1e0439a 100644
--- a/src/http/ngx_http_core_module.h
+++ b/src/http/ngx_http_core_module.h
@@ -222,7 +222,7 @@ struct ngx_http_core_loc_conf_s {
unsigned alias:1;
/* array of inclusive ngx_http_core_loc_conf_t */
- ngx_array_t locations;
+ ngx_array_t *locations;
/* pointer to the modules' loc_conf */
void **loc_conf ;