ngx_http_range_parse() should be static.

This commit is contained in:
Igor Sysoev 2011-08-30 13:07:33 +00:00
parent 9162057731
commit e766153451

View File

@ -58,7 +58,7 @@ typedef struct {
} ngx_http_range_filter_ctx_t; } 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); ngx_http_range_filter_ctx_t *ctx);
static ngx_int_t ngx_http_range_singlepart_header(ngx_http_request_t *r, static ngx_int_t ngx_http_range_singlepart_header(ngx_http_request_t *r,
ngx_http_range_filter_ctx_t *ctx); 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) ngx_http_range_parse(ngx_http_request_t *r, ngx_http_range_filter_ctx_t *ctx)
{ {
u_char *p; u_char *p;