diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-04-08 19:51:30 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-08 19:51:30 +0000 |
commit | b37316d7dd7796677bb0f6e82b760b792b6ab19c (patch) | |
tree | 168eaee82ff47ba1d61191c914cdc52de87b06fe /src/http/ngx_http.c | |
parent | a2de7b9b93a15128a46ba0186fddc2bdeed6c7cb (diff) | |
download | nginx-b37316d7dd7796677bb0f6e82b760b792b6ab19c.tar.gz nginx-b37316d7dd7796677bb0f6e82b760b792b6ab19c.zip |
style fix
Diffstat (limited to 'src/http/ngx_http.c')
-rw-r--r-- | src/http/ngx_http.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index 2e7018003..ed766bcba 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -1373,10 +1373,10 @@ static ngx_int_t ngx_http_optimize_servers(ngx_conf_t *cf, ngx_http_core_main_conf_t *cmcf, ngx_array_t *ports) { - ngx_uint_t s, p, a; - ngx_http_conf_port_t *port; - ngx_http_conf_addr_t *addr; - ngx_http_server_name_t *name; + ngx_uint_t s, p, a; + ngx_http_conf_port_t *port; + ngx_http_conf_addr_t *addr; + ngx_http_server_name_t *name; port = ports->elts; for (p = 0; p < ports->nelts; p++) { @@ -1425,13 +1425,13 @@ static ngx_int_t ngx_http_server_names(ngx_conf_t *cf, ngx_http_core_main_conf_t *cmcf, ngx_http_conf_addr_t *addr) { - ngx_int_t rc; - ngx_uint_t s; - ngx_hash_init_t hash; - ngx_http_server_name_t *name; - ngx_hash_keys_arrays_t ha; + ngx_int_t rc; + ngx_uint_t s; + ngx_hash_init_t hash; + ngx_hash_keys_arrays_t ha; + ngx_http_server_name_t *name; #if (NGX_PCRE) - ngx_uint_t regex, i; + ngx_uint_t regex, i; regex = 0; #endif |