From: Eric Covener Date: Wed, 7 Sep 2011 19:51:01 +0000 (+0000) Subject: add AP_ prefix to recently added DEFAULT_MAX_RANGES X-Git-Tag: 2.3.15~292 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=189a8b1eb5e17246c279baba6358e73f80e7e44a;p=apache add AP_ prefix to recently added DEFAULT_MAX_RANGES git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1166349 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 350017b0bd..2c52c77ee3 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -59,8 +59,8 @@ #include #endif -#ifndef DEFAULT_MAX_RANGES -#define DEFAULT_MAX_RANGES 200 +#ifndef AP_DEFAULT_MAX_RANGES +#define AP_DEFAULT_MAX_RANGES 200 #endif APLOG_USE_MODULE(http); @@ -197,7 +197,7 @@ static int get_max_ranges(request_rec *r) { } /* Any other negative val means the default */ - return DEFAULT_MAX_RANGES; + return AP_DEFAULT_MAX_RANGES; } static apr_status_t send_416(ap_filter_t *f, apr_bucket_brigade *tmpbb)