diff options
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/dir-rmdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/dir-rmdir.c b/libdiskfs/dir-rmdir.c index a31658b4..a5274d71 100644 --- a/libdiskfs/dir-rmdir.c +++ b/libdiskfs/dir-rmdir.c @@ -38,7 +38,7 @@ diskfs_S_dir_rmdir (struct protid *dircred, mutex_lock (&dnp->lock); - error = diskfs_lookup (dnp, name, REMOVE, &np, ds, dircred, 0, 0); + error = diskfs_lookup (dnp, name, REMOVE, &np, ds, dircred); if (error == EAGAIN) error = ENOTEMPTY; else if (np && !S_ISDIR (np->dn_stat.st_mode)) |