Decided that delete_in_dir()'s call to delete_file() would be

better using DEL_RECURSE.
This commit is contained in:
Wayne Davison
2005-01-20 23:51:55 +00:00
parent f5ea4b3b39
commit d97fd43a72

View File

@@ -111,7 +111,7 @@ void delete_files(struct file_list *flist)
}
} else {
delete_file(f, S_ISDIR(mode)
? DEL_DIR | DEL_NO_RECURSE : 0);
? DEL_DIR | DEL_RECURSE : 0);
}
deletion_count++;
}