]> git.kaiwu.me - nginx.git/commitdiff
style fix: remove double semicolons
authorIgor Sysoev <igor@sysoev.ru>
Tue, 9 Oct 2007 20:11:03 +0000 (20:11 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Tue, 9 Oct 2007 20:11:03 +0000 (20:11 +0000)
src/core/ngx_conf_file.c
src/http/modules/ngx_http_fastcgi_module.c
src/http/modules/ngx_http_proxy_module.c
src/http/modules/ngx_http_stub_status_module.c
src/os/unix/ngx_solaris_init.c

index 0e3523dda06729aaa86f74ce5d507c011dd16d8b..6084abb4b8a3268124360e21bf594e16f486dc79 100644 (file)
@@ -117,7 +117,7 @@ ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename)
         cf->conf_file->file.name.len = filename->len;
         cf->conf_file->file.name.data = filename->data;
         cf->conf_file->file.offset = 0;
-        cf->conf_file->file.log = cf->log;;
+        cf->conf_file->file.log = cf->log;
         cf->conf_file->line = 1;
 
         block = 0;
index c63c0f382b2fea56cfe35c1b556920f05d6b8fd8..ab4c4dbb5703d928b251efba988b5a014956ce5d 100644 (file)
@@ -2215,7 +2215,7 @@ ngx_http_fastcgi_store(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
     sc.source = &value[1];
     sc.lengths = &flcf->upstream.store_lengths;
     sc.values = &flcf->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;
 
index 298d766a3152beb63c09f088d9432d84c31efb78..095e20f804ac6b6855618174232136744f357b9a 100644 (file)
@@ -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;
 
index 6cdf8513c414682aac4b50a672ab69fbe47d0aa6..9d2d074b26d31b008a55107e499fefe3206a4377 100644 (file)
@@ -129,7 +129,7 @@ static ngx_int_t ngx_http_status_handler(ngx_http_request_t *r)
         return rc;
     }
 
-    return ngx_http_output_filter(r, &out);;
+    return ngx_http_output_filter(r, &out);
 }
 
 
index 93d02250ff1f5f0bbd956fd63445472fb8bc79b0..a255059745a476fa7d553dc801071c54b1096024 100644 (file)
@@ -57,7 +57,7 @@ ngx_os_specific_init(ngx_log_t *log)
 
     ngx_os_io = ngx_solaris_io;
 
-    return NGX_OK;;
+    return NGX_OK;
 }