From: Bill Stoddard Date: Fri, 7 Apr 2000 02:33:59 +0000 (+0000) Subject: Get Apache on Windows compiling again after the patch eliminating X-Git-Tag: apache-doc-split-01~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e0c99ce6c8fcd06130dc7b42ace3ed3c69830ce6;p=apache Get Apache on Windows compiling again after the patch eliminating buffered file i/o. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84934 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index f03763e108..4232c80e9c 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -2901,7 +2901,7 @@ static char *lookup_map_txtfile(request_rec *r, char *file, char *key) char *curkey; char *curval; - rc = ap_open(&fp, file, APR_READ | APR_BUFFERED, APR_OS_DEFAULT, r->pool); + rc = ap_open(&fp, file, APR_READ, APR_OS_DEFAULT, r->pool); if (rc != APR_SUCCESS) { return NULL; }