changeset 4058:d32a2000b766

ngx_http_range_parse() should be static.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 30 Aug 2011 13:07:33 +0000
parents 3205a6d6c6ec
children cc72e6229416
files src/http/modules/ngx_http_range_filter_module.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;