From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Sat, 21 May 2005 22:48:12 -0400 From: Russ Cox To: Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu> Subject: Re: [9fans] ftpfs & fmtinstall woe In-Reply-To: <00b601c55e73$826c9010$08ef7d50@kilgore> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <009e01c55e6c$427acc30$08ef7d50@kilgore> <00b601c55e73$826c9010$08ef7d50@kilgore> Topicbox-Message-UUID: 4dffecec-ead0-11e9-9d60-3106f5b1d025 i don't have any idea what bug you're searching for in ftpfs, but in the program that you posted, your bug is that you are passing %M a Dir when it is supposed to get a long. even %D is supposed to get a Dir* not a Dir. print(". %M\n", d->mode); not print(". %M\n", *d); russ