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
commit27e878bbf97e9d7b0816ff591ab0ea21fcc63c43 (patch)
tree595cb18c30d25ee44b2d58f391263de64359a105 /serverboot/disk_inode.h
parent34074b545aa7da28a88e80d6515822e8afce14d5 (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;