From 27e878bbf97e9d7b0816ff591ab0ea21fcc63c43 Mon Sep 17 00:00:00 2001 From: Thomas Bushnell Date: Wed, 11 Jun 1997 15:35:33 +0000 Subject: Tue Jun 10 21:54:52 1997 Thomas Bushnell, n/BSG * disk_inode.h (struct icommon): Use short instead of uid_t/gid_t in structure definition; those are now 32 bit types. * bootstrap.c (main): Support running from command line too; this is useful at least for simple debugging. --- serverboot/disk_inode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'serverboot/disk_inode.h') diff --git a/serverboot/disk_inode.h b/serverboot/disk_inode.h index e0f49ea3..6eed9104 100644 --- a/serverboot/disk_inode.h +++ b/serverboot/disk_inode.h @@ -61,8 +61,8 @@ struct icommon { u_short ic_mode; /* 0: mode and type of file */ short ic_nlink; /* 2: number of links to file */ - uid_t ic_uid; /* 4: owner's user id */ - gid_t ic_gid; /* 6: owner's group id */ + short ic_uid; /* 4: owner's user id */ + short ic_gid; /* 6: owner's group id */ quad ic_size; /* 8: number of bytes in file */ time_t ic_atime; /* 16: time last accessed */ int ic_atspare; -- cgit v1.2.3