diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 23:49:25 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 23:49:25 +0000 |
commit | ba9eec6a751feaacd0092edaa652f25de96f4a87 (patch) | |
tree | 34710b8a31d4047f993a2393a5032b259502c837 | |
parent | eafa1766d15db82b0fecee887e5ff1c937528cc0 (diff) |
(diskfs_shutdown): Ignore harmless errors from fsys_goaway.
-rw-r--r-- | libdiskfs/shutdown.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libdiskfs/shutdown.c b/libdiskfs/shutdown.c index 7427bbe4..23f48127 100644 --- a/libdiskfs/shutdown.c +++ b/libdiskfs/shutdown.c @@ -47,6 +47,10 @@ diskfs_shutdown (int flags) else error = 0; mutex_lock (&np->lock); + + if (error == MIG_SERVER_DIED || error == MACH_SEND_INVALID_DEST) + error = 0; + return error; } |