summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2011-08-30 13:07:33 +0000
committerIgor Sysoev <igor@sysoev.ru>2011-08-30 13:07:33 +0000
commite766153451aec9b5cb6790805ed6ad6403d9ce9d (patch)
treed641180408eb9b2f681b31b663bd8ca07e2e5d2c /src
parent9162057731da9b8e731316a4e49a2cdf29a3dd31 (diff)
downloadnginx-e766153451aec9b5cb6790805ed6ad6403d9ce9d.tar.gz
nginx-e766153451aec9b5cb6790805ed6ad6403d9ce9d.tar.bz2
ngx_http_range_parse() should be static.
Diffstat (limited to 'src')
-rw-r--r--src/http/modules/ngx_http_range_filter_module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_range_filter_module.c b/src/http/modules/ngx_http_range_filter_module.c
index 52e45ae45..57a502536 100644
--- a/src/http/modules/ngx_http_range_filter_module.c
+++ b/src/http/modules/ngx_http_range_filter_module.c
@@ -58,7 +58,7 @@ typedef struct {
} ngx_http_range_filter_ctx_t;
-ngx_int_t ngx_http_range_parse(ngx_http_request_t *r,
+static ngx_int_t ngx_http_range_parse(ngx_http_request_t *r,
ngx_http_range_filter_ctx_t *ctx);
static ngx_int_t ngx_http_range_singlepart_header(ngx_http_request_t *r,
ngx_http_range_filter_ctx_t *ctx);
@@ -230,7 +230,7 @@ next_filter:
}
-ngx_int_t
+static ngx_int_t
ngx_http_range_parse(ngx_http_request_t *r, ngx_http_range_filter_ctx_t *ctx)
{
u_char *p;