From 189a8b1eb5e17246c279baba6358e73f80e7e44a Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Wed, 7 Sep 2011 19:51:01 +0000 Subject: [PATCH] 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 --- modules/http/byterange_filter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.40.0