Change type of 'inode' member of struct coda_open_out to ino_t. This
holds a host system inode denoting a container file, not a coda inode type. Tested with CVS coda on i386. Reviewed by christos@.
This commit is contained in:
parent
70defdc96c
commit
94a375ec39
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: coda.h,v 1.12 2005/12/24 23:41:33 perry Exp $ */
|
||||
/* $NetBSD: coda.h,v 1.13 2006/03/02 14:24:57 gdt Exp $ */
|
||||
|
||||
/*
|
||||
|
||||
|
@ -401,7 +401,7 @@ struct coda_open_in {
|
|||
struct coda_open_out {
|
||||
struct coda_out_hdr oh;
|
||||
cdev_t dev;
|
||||
u_int32_t inode;
|
||||
ino_t inode; /* host inode of container file */
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue