Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!akgua!sdcsvax!sdcrdcf!hplabs!sri-unix!salkind@NYU.ARPA From: salkind@NYU.ARPA Newsgroups: net.unix-wizards Subject: inconsistency in ufs_tables Message-ID: <1093@sri-arpa.UUCP> Date: Tue, 22-May-84 14:26:00 EDT Article-I.D.: sri-arpa.1093 Posted: Tue May 22 14:26:00 1984 Date-Received: Sat, 26-May-84 11:58:28 EDT Lines: 21 From: Lou Salkind 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 #endif The other possible change would be to eliminate the KERNEL #ifdef's in ufs_tables.c.