diff options
author | Eran Kornblau <erankor@gmail.com> | 2017-03-02 08:46:00 -0500 |
---|---|---|
committer | Eran Kornblau <erankor@gmail.com> | 2017-03-02 08:46:00 -0500 |
commit | 0759f088a532ec48170ca03d694cc103757a0f4c (patch) | |
tree | 9f6f3583651e72affa0d0204d7118c6dc956bb92 /src/http/modules/ngx_http_static_module.c | |
parent | b4e9e377198da4f04d003bd85af5829b07b76470 (diff) | |
download | nginx-0759f088a532ec48170ca03d694cc103757a0f4c.tar.gz nginx-0759f088a532ec48170ca03d694cc103757a0f4c.zip |
Added missing static specifiers.
Diffstat (limited to 'src/http/modules/ngx_http_static_module.c')
-rw-r--r-- | src/http/modules/ngx_http_static_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_static_module.c b/src/http/modules/ngx_http_static_module.c index 07b95800d..f2435a78d 100644 --- a/src/http/modules/ngx_http_static_module.c +++ b/src/http/modules/ngx_http_static_module.c @@ -14,7 +14,7 @@ static ngx_int_t ngx_http_static_handler(ngx_http_request_t *r); static ngx_int_t ngx_http_static_init(ngx_conf_t *cf); -ngx_http_module_t ngx_http_static_module_ctx = { +static ngx_http_module_t ngx_http_static_module_ctx = { NULL, /* preconfiguration */ ngx_http_static_init, /* postconfiguration */ |