diff options
Diffstat (limited to 'libdiskfs/dir-rmdir.c')
-rw-r--r-- | libdiskfs/dir-rmdir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdiskfs/dir-rmdir.c b/libdiskfs/dir-rmdir.c index a90ff07b..83ec37b3 100644 --- a/libdiskfs/dir-rmdir.c +++ b/libdiskfs/dir-rmdir.c @@ -38,7 +38,7 @@ diskfs_S_dir_rmdir (struct protid *dircred, if (ds) diskfs_drop_dirstat (dnp, ds); - mutex_unlock (&dnp->lock); + pthread_mutex_unlock (&dnp->lock); return error; } @@ -50,7 +50,7 @@ diskfs_S_dir_rmdir (struct protid *dircred, if (diskfs_check_readonly ()) return EROFS; - mutex_lock (&dnp->lock); + pthread_mutex_lock (&dnp->lock); error = diskfs_lookup (dnp, name, REMOVE, &np, ds, dircred); if (error) @@ -61,7 +61,7 @@ diskfs_S_dir_rmdir (struct protid *dircred, /* Attempt to rmdir(".") */ diskfs_nrele (np); diskfs_drop_dirstat (dnp, ds); - mutex_unlock (&dnp->lock); + pthread_mutex_unlock (&dnp->lock); return EINVAL; } |