* fhandler_disk_file.cc (fhandler_disk_file::closedir): Add dir name

to debug output.
	* syscalls.cc (try_to_bin): Enable code to move file to user specific
	recycler dir to eliminate Vista problem.
	(unlink_nt): Add comment that rename after opening for delete on close
	only fails on XP.
This commit is contained in:
Corinna Vinschen
2007-01-31 10:55:59 +00:00
parent ff2a198b68
commit c3772e717f
3 changed files with 21 additions and 9 deletions

View File

@ -2046,7 +2046,7 @@ fhandler_disk_file::closedir (DIR *dir)
res = -1;
}
}
syscall_printf ("%d = closedir (%p)", res, dir);
syscall_printf ("%d = closedir (%p, %s)", res, dir, get_name ());
return res;
}