summaryrefslogtreecommitdiff
path: root/libdiskfs/dir-unlink.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-02-06 08:38:23 +0000
committerMiles Bader <miles@gnu.org>1997-02-06 08:38:23 +0000
commitbc19b991750e9b0f3cbd16c92e6297f7fb8a0e15 (patch)
tree37414df44330175f91d82222fe7e677728ae0194 /libdiskfs/dir-unlink.c
parent8c8724dfa19e4c508acbef9be612dd7673e1cbf4 (diff)
(diskfs_S_dir_unlink):
Supply DEPTH & NEW_DEPTH arguments to diskfs_lookup.
Diffstat (limited to 'libdiskfs/dir-unlink.c')
-rw-r--r--libdiskfs/dir-unlink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskfs/dir-unlink.c b/libdiskfs/dir-unlink.c
index 34fe0b67..13dd8f4b 100644
--- a/libdiskfs/dir-unlink.c
+++ b/libdiskfs/dir-unlink.c
@@ -1,5 +1,5 @@
/* libdiskfs implementation of fs.defs: dir_unlink
- Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation
+ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997 Free Software Foundation
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -39,7 +39,7 @@ diskfs_S_dir_unlink (struct protid *dircred,
mutex_lock (&dnp->lock);
- error = diskfs_lookup (dnp, name, REMOVE, &np, ds, dircred);
+ error = diskfs_lookup (dnp, name, REMOVE, &np, ds, dircred, 0, 0);
if (error == EAGAIN)
error = EISDIR;
if (error)