diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 23:45:28 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 23:45:28 +0000 |
commit | eafa1766d15db82b0fecee887e5ff1c937528cc0 (patch) | |
tree | aac6faf173c16aa544184b2d4e48f5c25f65c27f /libdiskfs/fsys-options.c | |
parent | 18264abd92fc61c122fa090d4e2f4474d33a82b1 (diff) |
(diskfs_S_fsys_set_options/helper): Ignore harmless errors from
fsys_set_options.
Diffstat (limited to 'libdiskfs/fsys-options.c')
-rw-r--r-- | libdiskfs/fsys-options.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libdiskfs/fsys-options.c b/libdiskfs/fsys-options.c index edf0d44f..f793e5cf 100644 --- a/libdiskfs/fsys-options.c +++ b/libdiskfs/fsys-options.c @@ -54,6 +54,9 @@ diskfs_S_fsys_set_options (fsys_t fsys, else error = 0; mutex_lock (&np->lock); + + if (error == MIG_SERVER_DIED || error == MACH_SEND_INVALID_DEST) + error = 0; return error; } |