Date: Wed, 25 Aug 1999 12:10:06 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Michael Bukin cc: djgpp AT delorie DOT com Subject: Re: RHIDE crashes without traceback. [solved!] In-Reply-To: <20d7wcn272.fsf@Sky.inp.nsk.su> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 25 Aug 1999, Michael Bukin wrote: > E:\TEMP>redir -t ls \\foo > d:/comp/djgpp/bin/ls: //foo: No such file or directory (ENOENT) > Elapsed time: 8.630 seconds > > E:\TEMP>redir -t ls c:\\foo > d:/comp/djgpp/bin/ls: c://foo: No such file or directory (ENOENT) > Elapsed time: 8.620 seconds Beware: the DJGPP port of GNU `ls' converts all backslashes to forward slashes before `main' even sees them. So you might type \\foo, but what `ls' really sees is //foo; see the message printed by `ls'. Some observations reported here seem to indicate that the case of the slashes matters (probably because the conversion of / into \ is done on a different level than the canonicalization of file names).