# HG changeset patch # User Igor Sysoev # Date 1314709653 0 # Node ID d32a2000b766698d9fe36cc0d90d602ca915027b # Parent 3205a6d6c6ec1037534a64dddd9d9552f7ceae54 ngx_http_range_parse() should be static. diff --git a/src/http/modules/ngx_http_range_filter_module.c b/src/http/modules/ngx_http_range_filter_module.c --- 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;