diff options
Diffstat (limited to 'sysdeps/mach/hurd/socket.c')
-rw-r--r-- | sysdeps/mach/hurd/socket.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/socket.c b/sysdeps/mach/hurd/socket.c index b779360780..282c24e36b 100644 --- a/sysdeps/mach/hurd/socket.c +++ b/sysdeps/mach/hurd/socket.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -40,7 +40,8 @@ DEFUN(socket, (domain, type, protocol), return -1; err = __socket_create (server, type, protocol, &sock); - if (err == MACH_SEND_INVALID_DEST || err == MIG_SERVER_DIED) + if (err == MACH_SEND_INVALID_DEST || err == MIG_SERVER_DIED + || err == MIG_BAD_ID || err == EOPNOTSUPP) { /* On the first use of the socket server during the operation, allow for the old server port dying. */ |