diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-03-22 20:56:04 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-22 20:56:04 +0000 |
commit | 193854f2ad1e553fc0ac625a3f7cb1ada6631b5b (patch) | |
tree | 10bca7b84dbdd9210256cd413ddda56c644c4fb8 | |
parent | 7c6e23e123a6a51aa4f26d900c76e649314e1d94 (diff) |
(diskfs_S_dir_unlink): Use new args for diskfs_dirremove.
-rw-r--r-- | libdiskfs/dir-unlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/dir-unlink.c b/libdiskfs/dir-unlink.c index 47107972..bd02ec32 100644 --- a/libdiskfs/dir-unlink.c +++ b/libdiskfs/dir-unlink.c @@ -62,7 +62,7 @@ diskfs_S_dir_unlink (struct protid *dircred, return EISDIR; } - error = diskfs_dirremove (dnp, ds); + error = diskfs_dirremove (dnp, np, name, ds); if (diskfs_synchronous) diskfs_node_update (dnp, 1); if (error) |