diff options
author | Roland McGrath <roland@gnu.org> | 2001-04-01 01:39:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-04-01 01:39:52 +0000 |
commit | 4b4ddec612f8cf83f1f82974f83aaadbc10cfff3 (patch) | |
tree | 921f458706e16cdb0db3090d6556f3b0bc10dfd4 | |
parent | b3cc0d070f332ad607035a5f635285ba9a179380 (diff) |
2001-03-28 Neal H Walfield <neal@cs.uml.edu>
* io-identity.c (diskfs_S_io_identity): Use INUM; that is what
we bothered getting the lock for.
-rw-r--r-- | libdiskfs/io-identity.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskfs/io-identity.c b/libdiskfs/io-identity.c index 5717a7d2..1b7ab108 100644 --- a/libdiskfs/io-identity.c +++ b/libdiskfs/io-identity.c @@ -1,5 +1,5 @@ /* libdiskfs implementation of io_identity RPC - Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 2001 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -60,7 +60,7 @@ diskfs_S_io_identity (struct protid *cred, { *idtype = MACH_MSG_TYPE_MAKE_SEND; *fsystype = MACH_MSG_TYPE_MAKE_SEND; - *fileno = np->dn_stat.st_ino; + *fileno = inum; } return err; |