Delivered-To: new-httpd-archive@hyperreal.org Received: (qmail 6405 invoked by uid 6000); 15 Feb 2000 00:17:20 -0000 Received: (qmail 6349 invoked from network); 15 Feb 2000 00:17:07 -0000 Received: from gateway.sequent.com (138.95.18.1) by taz.hyperreal.org with SMTP; 15 Feb 2000 00:17:07 -0000 Received: from chaos.sequent.com (chaos.sequent.com [138.95.19.10]) by gateway.sequent.com (8.9.3/8.8.5) with ESMTP id QAA04078 for ; Mon, 14 Feb 2000 16:16:18 -0800 (PST) Received: by chaos.sequent.com with Internet Mail Service (5.5.2651.58) id <19CNG4C2>; Mon, 14 Feb 2000 16:16:17 -0800 Message-ID: From: "Turner, Ian \(iant\)" To: new-httpd@apache.org Subject: Minor fix to v1.3.12-dev Date: Mon, 14 Feb 2000 16:16:08 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2651.58) Content-Type: text/plain Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org Status: RO A minor change was made to v1.3.11 to resolve a problem with Apache on OS/2, which should have been #IFDEF'ed just for OS/2 (and any other platform which needs the "t" mode to fopen() ), since not all implementations of Unix ignore the "t" mode. (I.E. the change breaks Apache on some platforms) Here is a simple diff to src/main/util.c that should be added to v1.3.12 before it is released. (this has also been filed as bug general/5760 so it does not get lost) *** util.c.orig Mon Feb 14 13:25:17 2000 --- util.c Mon Feb 14 13:28:26 2000 *************** *** 809,815 **** --- 809,820 ---- return NULL; } + #ifdef OS2 file = ap_pfopen(p, name, "rt"); + #else + file = ap_pfopen(p, name, "r"); + #endif +