diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 19:38:02 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 19:38:02 +0000 |
commit | 77dbb5db1e6787eac7c079eddaa982281e3b87e3 (patch) | |
tree | c9c81fc052c1ee5a45b6dc60675834670d77e18c /libdiskfs | |
parent | 872e579effbf9d9c37a5179eedb441025ce31b70 (diff) |
(diskfs_S_file_set_translator): Fix parentheses on first active EXCL
check.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/file-set-trans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/file-set-trans.c b/libdiskfs/file-set-trans.c index 10bb8899..00e73734 100644 --- a/libdiskfs/file-set-trans.c +++ b/libdiskfs/file-set-trans.c @@ -63,7 +63,7 @@ diskfs_S_file_set_translator (struct protid *cred, return error; } - if (control != MACH_PORT_NULL && (active_flags & FS_TRANS_EXCL == 0)) + if (control != MACH_PORT_NULL && ((active_flags & FS_TRANS_EXCL) == 0)) { mutex_unlock (&np->lock); error = fsys_goaway (control, killtrans_flags); |