diff options
Diffstat (limited to 'isofs/lookup.c')
-rw-r--r-- | isofs/lookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isofs/lookup.c b/isofs/lookup.c index 8daa5464..2ff30496 100644 --- a/isofs/lookup.c +++ b/isofs/lookup.c @@ -132,9 +132,9 @@ diskfs_lookup_hard (struct node *dp, const char *name, enum lookup_type type, /* We don't have to do the normal rigamarole, because we are permanently read-only, so things are necessarily quiescent. Just be careful to honor the locking order. */ - mutex_unlock (&dp->lock); + pthread_mutex_unlock (&dp->lock); err = load_inode (npp, record, &rr); - mutex_lock (&dp->lock); + pthread_mutex_lock (&dp->lock); } } else if (namelen == 1 && name[0] == '.') |