Several small fixes

This commit is contained in:
Michiel Broek
2002-05-06 18:53:17 +00:00
parent c720a2f984
commit 8d792f2e3b
5 changed files with 27 additions and 12 deletions

View File

@@ -398,7 +398,7 @@ int EditFileRec(int Area)
* Erase file in path if path is set and not the default
* FTP base path
*/
sprintf(temp, "rm -r -f %s", area.Path);
sprintf(temp, "rm -f %s", area.Path);
system(temp);
rmdir(area.Path);
}