i stand corrected:
brahma% 8c f.c && 8l f.8
brahma% ./8.out
. d-rwxr-xr-x
brahma% ls -ld .
d-rwxr-xr-x M 289907 boyd boyd 0 May 21 21:03 src
brahma%
but i would suggest that fcall be better documented.
--
MGRS 31U DQ 52572 12604
----- Original Message -----
From: "Russ Cox" <[EMAIL PROTECTED]>
To: "Fans of the OS Plan 9 from Bell Labs" <[email protected]>
Sent: Sunday, May 22, 2005 4:48 AM
Subject: Re: [9fans] ftpfs & fmtinstall woe
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