aboutsummaryrefslogtreecommitdiff
path: root/libdiskfs/io-revoke.c
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-02-16 11:15:31 +0000
committerThomas Bushnell <thomas@gnu.org>1999-02-16 11:15:31 +0000
commitfe25b1e7fcbcc6a33aa95557e2799790bbd4e5e9 (patch)
treeb5b797838fc16047bfa4e3bf2792e9eb20fb4950 /libdiskfs/io-revoke.c
parent2f9e50d8ce60741143bb318f589db8c60d8404bd (diff)
downloadhurd-fe25b1e7fcbcc6a33aa95557e2799790bbd4e5e9.tar.gz
hurd-fe25b1e7fcbcc6a33aa95557e2799790bbd4e5e9.tar.bz2
hurd-fe25b1e7fcbcc6a33aa95557e2799790bbd4e5e9.zip
minor repairs
Diffstat (limited to 'libdiskfs/io-revoke.c')
-rw-r--r--libdiskfs/io-revoke.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libdiskfs/io-revoke.c b/libdiskfs/io-revoke.c
index ddda95fa..90f8dc98 100644
--- a/libdiskfs/io-revoke.c
+++ b/libdiskfs/io-revoke.c
@@ -30,9 +30,12 @@ diskfs_S_io_revoke (struct protid *cred)
iterator_function (void *port)
{
struct protid *user = port;
-
- if ((user != cred) && (user->po->np == np))
+
+ if ((user.pi.class == diskfs_protid_class)
+ && (user != cred)
+ && (user->po->np == np))
ports_destroy_right (user);
+ return 0;
}
if (!cred)