diff options
Diffstat (limited to 'ftpfs/netfs.c')
-rw-r--r-- | ftpfs/netfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ftpfs/netfs.c b/ftpfs/netfs.c index 8922f3ab..5359acb9 100644 --- a/ftpfs/netfs.c +++ b/ftpfs/netfs.c @@ -41,7 +41,7 @@ netfs_attempt_create_file (struct iouser *user, struct node *dir, char *name, mode_t mode, struct node **node) { *node = 0; - mutex_unlock (&dir->lock); + pthread_mutex_unlock (&dir->lock); return EOPNOTSUPP; } @@ -413,7 +413,7 @@ error_t netfs_attempt_mkfile (struct iouser *user, struct node *dir, mode_t mode, struct node **node) { *node = 0; - mutex_unlock (&dir->lock); + pthread_mutex_unlock (&dir->lock); return EROFS; } |