Commit d97fd43a authored by Wayne Davison's avatar Wayne Davison

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

better using DEL_RECURSE.
parent f5ea4b3b
......@@ -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++;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment