]> granicus.if.org Git - apache/commitdiff
Get Apache on Windows compiling again after the patch eliminating
authorBill Stoddard <stoddard@apache.org>
Fri, 7 Apr 2000 02:33:59 +0000 (02:33 +0000)
committerBill Stoddard <stoddard@apache.org>
Fri, 7 Apr 2000 02:33:59 +0000 (02:33 +0000)
buffered file i/o.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84934 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c

index f03763e10868609a004677d56d1d811d3f264948..4232c80e9ccb00f7a01e87ee9c45f381a65cefa0 100644 (file)
@@ -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;
     }