summaryrefslogtreecommitdiff
path: root/libtrivfs/io-revoke.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-02-17 04:20:30 +0000
committerRoland McGrath <roland@gnu.org>1999-02-17 04:20:30 +0000
commit234468447e1b6d2e131c096726c1aef2beb3dbc1 (patch)
tree9ba22a753a475a09c3f342616d92b54bc882a5a5 /libtrivfs/io-revoke.c
parent67390eae3ff7446f2c11e7782632807cf142b026 (diff)
1999-02-16 Roland McGrath <roland@baalperazim.frob.com>
* io-revoke.c: Add reply, reply_type args.
Diffstat (limited to 'libtrivfs/io-revoke.c')
-rw-r--r--libtrivfs/io-revoke.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libtrivfs/io-revoke.c b/libtrivfs/io-revoke.c
index 5eccc6aa..37f0f4a3 100644
--- a/libtrivfs/io-revoke.c
+++ b/libtrivfs/io-revoke.c
@@ -1,4 +1,4 @@
-/*
+/*
Copyright (C) 1999 Free Software Foundation
Written by Thomas Bushnell, BSG.
@@ -21,11 +21,12 @@
/* Implement io_revoke as described in <hurd/io.defs>. */
kern_return_t
-trivfs_S_io_revoke (struct trivfs_protid *cred)
+trivfs_S_io_revoke (struct trivfs_protid *cred,
+ mach_port_t reply, mach_msg_type_name_t reply_type)
{
/* Revoke of the underlying node is actually generally right,
because that will cause actual calls to fail. In any case,
- we don't have the ability to check permissions ourselves
+ we don't have the ability to check permissions ourselves
correctly. */
return cred ? io_revoke (cred->realnode) : EOPNOTSUPP;