summaryrefslogtreecommitdiff
path: root/serverboot/disk_inode.h
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1997-06-11 15:35:33 +0000
committerThomas Bushnell <thomas@gnu.org>1997-06-11 15:35:33 +0000
commitfa154160ea6ea5de6bc767f5ce191157edf93e0a (patch)
treec6e412b34a0a54bb9a6cc7d844924b47125ed8a4 /serverboot/disk_inode.h
parentecd15a793488433b22f1108670600541bbbdd100 (diff)
Tue Jun 10 21:54:52 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* 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.
Diffstat (limited to 'serverboot/disk_inode.h')
-rw-r--r--serverboot/disk_inode.h4
1 files changed, 2 insertions, 2 deletions
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;