Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:13530 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 60309 invoked by uid 1010); 26 Oct 2004 17:34:32 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 60284 invoked from network); 26 Oct 2004 17:34:32 -0000 Received: from unknown (HELO ctindustries.net) (216.117.147.250) by pb1.pair.com with SMTP; 26 Oct 2004 17:34:32 -0000 Received: from ctdprimary (dsta-aa203.pivot.net [66.186.171.203]) (authenticated bits=0) by ctindustries.net (8.12.8/8.12.8) with ESMTP id i9QGUgs3012652 for ; Tue, 26 Oct 2004 12:30:44 -0400 Message-ID: <064a01c4bb82$8f9d4d90$f7dea8c0@cyberware.local> To: Date: Tue, 26 Oct 2004 13:38:04 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Subject: streams file uri under windows From: rrichards@ctindustries.net ("Rob Richards") It possible to add this patch or something along these lines so that file:/// syntax can be used under windows again? A change on 8/31 was made to allow for file:// but now prevents file:/// (which is valid) Index: streams.c =================================================================== RCS file: /repository/php-src/main/streams/streams.c,v retrieving revision 1.68 diff -r1.68 streams.c 1496c1496 < if (protocol && path[n+1] == '/' && path[n+2] == '/' && path[n+4] != ':') { --- > if (protocol && path[n+1] == '/' && path[n+2] == '/' && path[n+4] != ':' && path[n+3] != '/') { Rob