diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-03-28 20:19:39 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-28 20:19:39 +0000 |
commit | a51e7e02eaef23e40fe4c12cd4ca3b36aa2e94be (patch) | |
tree | 743af72d1ad0402ec3f4b47a96e0eddb10a109e5 /libports/begin-rpc.c | |
parent | 0ecd4e94a722d49b4dafbc995efad2b359b947d5 (diff) | |
download | hurd-a51e7e02eaef23e40fe4c12cd4ca3b36aa2e94be.tar.gz hurd-a51e7e02eaef23e40fe4c12cd4ca3b36aa2e94be.tar.bz2 hurd-a51e7e02eaef23e40fe4c12cd4ca3b36aa2e94be.zip |
(ports_begin_rpc): Return EOPNOTSUPP, not EDIED, if receive right is
gone.
Diffstat (limited to 'libports/begin-rpc.c')
-rw-r--r-- | libports/begin-rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libports/begin-rpc.c b/libports/begin-rpc.c index 73b3646b..ebe3473c 100644 --- a/libports/begin-rpc.c +++ b/libports/begin-rpc.c @@ -38,7 +38,7 @@ ports_begin_rpc (void *portstruct, mach_msg_id_t msg_id, struct rpc_info *info) if (pi->port_right == MACH_PORT_NULL) { mutex_unlock (&_ports_lock); - return EDIED; + return EOPNOTSUPP; } if (_ports_flags & INHIBITED) |