diff options
author | Roman Arutyunyan <arut@nginx.com> | 2016-06-27 18:42:29 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2016-06-27 18:42:29 +0300 |
commit | dcf3d20874b0f61ccb74daeb19266198fb3413fc (patch) | |
tree | fa1c0395c811ccb57cd9f9d1449b5c94fd8c0d19 /src | |
parent | e0b0fa6bf55df8c9de0f89dceff0e1b32860a348 (diff) | |
download | nginx-dcf3d20874b0f61ccb74daeb19266198fb3413fc.tar.gz nginx-dcf3d20874b0f61ccb74daeb19266198fb3413fc.zip |
Style.
Diffstat (limited to 'src')
-rw-r--r-- | src/stream/ngx_stream_limit_conn_module.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/stream/ngx_stream_limit_conn_module.c b/src/stream/ngx_stream_limit_conn_module.c index f1d8a37c7..c27d7484a 100644 --- a/src/stream/ngx_stream_limit_conn_module.c +++ b/src/stream/ngx_stream_limit_conn_module.c @@ -105,16 +105,16 @@ static ngx_stream_module_t ngx_stream_limit_conn_module_ctx = { ngx_module_t ngx_stream_limit_conn_module = { NGX_MODULE_V1, - &ngx_stream_limit_conn_module_ctx, /* module context */ - ngx_stream_limit_conn_commands, /* module directives */ - NGX_STREAM_MODULE, /* module type */ - NULL, /* init master */ - NULL, /* init module */ - NULL, /* init process */ - NULL, /* init thread */ - NULL, /* exit thread */ - NULL, /* exit process */ - NULL, /* exit master */ + &ngx_stream_limit_conn_module_ctx, /* module context */ + ngx_stream_limit_conn_commands, /* module directives */ + NGX_STREAM_MODULE, /* module type */ + NULL, /* init master */ + NULL, /* init module */ + NULL, /* init process */ + NULL, /* init thread */ + NULL, /* exit thread */ + NULL, /* exit process */ + NULL, /* exit master */ NGX_MODULE_V1_PADDING }; |