summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorVladimir Homutov <vl@nginx.com>2016-07-12 17:34:40 +0300
committerVladimir Homutov <vl@nginx.com>2016-07-12 17:34:40 +0300
commite1308338a9b93222ae17b778a3fa4df21601cfb8 (patch)
tree6929b980b5cee96c5b0233b67b6d3ca8e42163a4
parent4105225310436c5eac1681e05f313fdc4a558de8 (diff)
downloadnginx-e1308338a9b93222ae17b778a3fa4df21601cfb8.tar.gz
nginx-e1308338a9b93222ae17b778a3fa4df21601cfb8.tar.bz2
Stream: style.
-rw-r--r--src/stream/ngx_stream_limit_conn_module.c2
-rw-r--r--src/stream/ngx_stream_map_module.c2
-rw-r--r--src/stream/ngx_stream_return_module.c2
-rw-r--r--src/stream/ngx_stream_upstream.c2
-rw-r--r--src/stream/ngx_stream_upstream_hash_module.c2
-rw-r--r--src/stream/ngx_stream_upstream_least_conn_module.c2
-rw-r--r--src/stream/ngx_stream_upstream_zone_module.c2
7 files changed, 7 insertions, 7 deletions
diff --git a/src/stream/ngx_stream_limit_conn_module.c b/src/stream/ngx_stream_limit_conn_module.c
index 9ad52eff1..40eca94f2 100644
--- a/src/stream/ngx_stream_limit_conn_module.c
+++ b/src/stream/ngx_stream_limit_conn_module.c
@@ -101,7 +101,7 @@ static ngx_stream_module_t ngx_stream_limit_conn_module_ctx = {
NULL, /* init main configuration */
ngx_stream_limit_conn_create_conf, /* create server configuration */
- ngx_stream_limit_conn_merge_conf, /* merge server configuration */
+ ngx_stream_limit_conn_merge_conf /* merge server configuration */
};
diff --git a/src/stream/ngx_stream_map_module.c b/src/stream/ngx_stream_map_module.c
index 9e4c2ca35..47a15bef7 100644
--- a/src/stream/ngx_stream_map_module.c
+++ b/src/stream/ngx_stream_map_module.c
@@ -81,7 +81,7 @@ static ngx_stream_module_t ngx_stream_map_module_ctx = {
NULL, /* init main configuration */
NULL, /* create server configuration */
- NULL, /* merge server configuration */
+ NULL /* merge server configuration */
};
diff --git a/src/stream/ngx_stream_return_module.c b/src/stream/ngx_stream_return_module.c
index c1a16ef1a..3ab9bdf58 100644
--- a/src/stream/ngx_stream_return_module.c
+++ b/src/stream/ngx_stream_return_module.c
@@ -48,7 +48,7 @@ static ngx_stream_module_t ngx_stream_return_module_ctx = {
NULL, /* init main configuration */
ngx_stream_return_create_srv_conf, /* create server configuration */
- NULL, /* merge server configuration */
+ NULL /* merge server configuration */
};
diff --git a/src/stream/ngx_stream_upstream.c b/src/stream/ngx_stream_upstream.c
index 36d05cc88..2ea5eebd3 100644
--- a/src/stream/ngx_stream_upstream.c
+++ b/src/stream/ngx_stream_upstream.c
@@ -46,7 +46,7 @@ static ngx_stream_module_t ngx_stream_upstream_module_ctx = {
ngx_stream_upstream_init_main_conf, /* init main configuration */
NULL, /* create server configuration */
- NULL, /* merge server configuration */
+ NULL /* merge server configuration */
};
diff --git a/src/stream/ngx_stream_upstream_hash_module.c b/src/stream/ngx_stream_upstream_hash_module.c
index 41433dcd4..88185eb05 100644
--- a/src/stream/ngx_stream_upstream_hash_module.c
+++ b/src/stream/ngx_stream_upstream_hash_module.c
@@ -84,7 +84,7 @@ static ngx_stream_module_t ngx_stream_upstream_hash_module_ctx = {
NULL, /* init main configuration */
ngx_stream_upstream_hash_create_conf, /* create server configuration */
- NULL, /* merge server configuration */
+ NULL /* merge server configuration */
};
diff --git a/src/stream/ngx_stream_upstream_least_conn_module.c b/src/stream/ngx_stream_upstream_least_conn_module.c
index 359d78808..e884975fa 100644
--- a/src/stream/ngx_stream_upstream_least_conn_module.c
+++ b/src/stream/ngx_stream_upstream_least_conn_module.c
@@ -39,7 +39,7 @@ static ngx_stream_module_t ngx_stream_upstream_least_conn_module_ctx = {
NULL, /* init main configuration */
NULL, /* create server configuration */
- NULL, /* merge server configuration */
+ NULL /* merge server configuration */
};
diff --git a/src/stream/ngx_stream_upstream_zone_module.c b/src/stream/ngx_stream_upstream_zone_module.c
index ddcc093c0..07ab88dfa 100644
--- a/src/stream/ngx_stream_upstream_zone_module.c
+++ b/src/stream/ngx_stream_upstream_zone_module.c
@@ -39,7 +39,7 @@ static ngx_stream_module_t ngx_stream_upstream_zone_module_ctx = {
NULL, /* init main configuration */
NULL, /* create server configuration */
- NULL, /* merge server configuration */
+ NULL /* merge server configuration */
};