From owner-freebsd-current@FreeBSD.ORG Fri Feb 6 11:49:08 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FB3716A4CE for ; Fri, 6 Feb 2004 11:49:08 -0800 (PST) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB98C43D4C for ; Fri, 6 Feb 2004 11:48:40 -0800 (PST) (envelope-from julian@elischer.org) Received: from interjet.elischer.org ([24.7.73.28]) by comcast.net (sccrmhc11) with ESMTP id <2004020619481501100t9f2ie>; Fri, 6 Feb 2004 19:48:16 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id LAA31125; Fri, 6 Feb 2004 11:48:14 -0800 (PST) Date: Fri, 6 Feb 2004 11:48:12 -0800 (PST) From: Julian Elischer To: Garrett Wollman In-Reply-To: <200402061855.i16It4AC050196@khavrinen.lcs.mit.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FreeBSD current users Subject: Re: FreeBSD 1.1 under -current :-) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Feb 2004 19:49:08 -0000 On Fri, 6 Feb 2004, Garrett Wollman wrote: > < said: > > > jules# ktrace ./mkdir -p /tmp/xx/xx > > mkdir: : No such file or directory > > FreeBSD 1.x had a bug in which the pathname "" would be treated the > same as ".". Some of the 1.x utilities had bugs which depended on > this bug in order to function. This was fixed in 2.x IIRC. hmmm I don't think this is the problem, but it's an interesting thought. the failing syscall is I think mkdir with flags (mode 755) I'm pretty sure the argument was an absolute path.. possibly it's '/usr' if teh stat failure was not real. 4690 mkdir RET umask 18/0x12 4690 mkdir CALL old.stat(0xbfbfeddb,0xbfbfecd8) 4690 mkdir RET old.stat -1 errno 2 No such file or directory 4690 mkdir CALL mkdir(0xbfbfeddb,0x1ed) 4690 mkdir RET mkdir -1 errno 2 No such file or directory > > -GAWollman > >