From: Jeff Trawick Date: Fri, 24 Aug 2001 11:35:58 +0000 (+0000) Subject: temporarily back out the buffering of .var files while folks X-Git-Tag: 2.0.25~86 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e01d7f45b4ab3b6a60e121f7ef743c5d4955f12d;p=apache temporarily back out the buffering of .var files while folks have a chance to get APR ungetc working properly on buffered files git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90628 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_negotiation.c b/modules/mappers/mod_negotiation.c index 18d3331a81..5d4658a6ea 100644 --- a/modules/mappers/mod_negotiation.c +++ b/modules/mappers/mod_negotiation.c @@ -889,7 +889,7 @@ static int read_type_map(apr_file_t **map, negotiation_state *neg, request_rec * /* We are not using multiviews */ neg->count_multiviews_variants = 0; - if ((status = apr_file_open(map, rr->filename, APR_READ | APR_BUFFERED, + if ((status = apr_file_open(map, rr->filename, APR_READ /* | APR_BUFFERED */, APR_OS_DEFAULT, neg->pool)) != APR_SUCCESS) { ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, "cannot access type map file: %s", rr->filename);