diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-03-22 20:50:19 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-22 20:50:19 +0000 |
commit | cc2b935f48733eba58eacac83250064110a7ee3d (patch) | |
tree | 13058469dd96477620d850a561aa8149e54f5804 /libdiskfs | |
parent | f8f5cd8d12442153edd3c4d189eac6589d8c68aa (diff) |
(diskfs_clear_directory): Use new diskfs_dirremove args.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/dir-clear.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskfs/dir-clear.c b/libdiskfs/dir-clear.c index 87b4fd32..4cb300e2 100644 --- a/libdiskfs/dir-clear.c +++ b/libdiskfs/dir-clear.c @@ -35,7 +35,7 @@ diskfs_clear_directory (struct node *dp, if (!err) { assert (np == dp); - err = diskfs_dirremove (dp, ds); + err = diskfs_dirremove (dp, np, ".", ds); diskfs_nrele (np); } else @@ -53,7 +53,7 @@ diskfs_clear_directory (struct node *dp, if (!err) { assert (np == pdp); - err = diskfs_dirremove (dp, ds); + err = diskfs_dirremove (dp, np, "..", ds); } else diskfs_drop_dirstat (dp, ds); |