inconsistency in ufs_tables

salkind at NYU.ARPA salkind at NYU.ARPA
Wed May 23 04:26:00 AEST 1984


From:  Lou Salkind <salkind at NYU.ARPA>

Index:	sys/sys/ufs_tables.c 4.2BSD

Description:
	Both ufs_subr.c and ufs_tables.c are used by fsck.  In
	ufs_subr.c, the location of the #include files depends on
	#ifdef KERNEL.  Not so in ufs_tables.c!
Repeat-By:
	Compile fsck.  Have different header files floating around.
Fix:
	I have changed in ufs_tables.c the line
		#include "../h/param.h"
	to read
		#ifdef KERNEL
		#include "../h/param.h"
		#else
		#include <sys/param.h>
		#endif
	The other possible change would be to eliminate the KERNEL
	#ifdef's in ufs_tables.c.



More information about the Comp.unix.wizards mailing list