diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-10-09 20:11:03 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-10-09 20:11:03 +0000 |
commit | bfb23bf6042e8a08e0722c3d63b54d5777564347 (patch) | |
tree | b2edd23ce865d9b8271a943bad4993a16c28da20 /src/http/modules/ngx_http_proxy_module.c | |
parent | 3fc6ee450155f3fa87ac53f3377901cad2a6f7ce (diff) | |
download | nginx-bfb23bf6042e8a08e0722c3d63b54d5777564347.tar.gz nginx-bfb23bf6042e8a08e0722c3d63b54d5777564347.zip |
style fix: remove double semicolons
Diffstat (limited to 'src/http/modules/ngx_http_proxy_module.c')
-rw-r--r-- | src/http/modules/ngx_http_proxy_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_proxy_module.c b/src/http/modules/ngx_http_proxy_module.c index 298d766a3..095e20f80 100644 --- a/src/http/modules/ngx_http_proxy_module.c +++ b/src/http/modules/ngx_http_proxy_module.c @@ -2429,7 +2429,7 @@ ngx_http_proxy_store(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) sc.source = &value[1]; sc.lengths = &plcf->upstream.store_lengths; sc.values = &plcf->upstream.store_values; - sc.variables = ngx_http_script_variables_count(&value[1]);; + sc.variables = ngx_http_script_variables_count(&value[1]); sc.complete_lengths = 1; sc.complete_values = 1; |