Date: Tue, 18 Feb 1997 00:52:52 +1100 From: Bruce Evans <bde@zeta.org.au> To: bde@freefall.freebsd.org, cvs-all@freefall.freebsd.org, CVS-committers@freefall.freebsd.org, cvs-sbin@freefall.freebsd.org Subject: Re: cvs commit: src/sbin Makefile Message-ID: <199702171352.AAA31483@godzilla.zeta.org.au>
next in thread | raw e-mail | index | archive | help
> Modified: sbin Makefile > Log: > Disabled dumplfs. Importing the Lite2 version was a mistake, since > many files haven't left the vendor branch and the sys/ufs/lfs hasn't > been merged. This wasn't actually necessary. The files on the vendor branch aren't a problem. dumplfs.c doesn't compile for other reasons, but can be fixed quickly. There is another problem with ufs/dinode.h's change from `struct timespec di_atime' to `int32_t di_atime; int32_t di_atimensec': the type of the seconds field is now incompatible with time_t, although both are 32-bit signed integers on i386's. `struct timespec was wrong before (it breaks if sizeof(long) != 32). Now ctime(&dip->di_atime) is wrong (it breaks if sizeof(time_t) != 32). Bruce
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199702171352.AAA31483>