* syscalls.cc (statvfs): Simplify path name expression.

This commit is contained in:
Corinna Vinschen 2006-03-08 16:10:55 +00:00
parent 6022cd2ef9
commit 6ca5318940
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2006-03-08 Corinna Vinschen <corinna@vinschen.de>
* syscalls.cc (statvfs): Simplify path name expression.
2006-03-08 Corinna Vinschen <corinna@vinschen.de>
* syscalls.cc: Include winioctl.h.

View File

@ -1845,19 +1845,19 @@ statvfs (const char *fname, struct statvfs *sfs)
if (freec > availc)
{
/* Quotas active. We can't trust totalc. */
HANDLE hdl = CreateFile (full_path.get_win32 (), READ_CONTROL,
HANDLE hdl = CreateFile (full_path, READ_CONTROL,
wincap.shared (), &sec_none_nih,
OPEN_EXISTING,
FILE_FLAG_BACKUP_SEMANTICS, NULL);
if (hdl == INVALID_HANDLE_VALUE)
debug_printf ("CreateFile (%s) failed, %E", full_path.get_win32 ());
debug_printf ("CreateFile (%s) failed, %E", full_path);
else
{
NTFS_VOLUME_DATA_BUFFER nvdb;
DWORD bytes;
if (!DeviceIoControl (hdl, FSCTL_GET_NTFS_VOLUME_DATA, NULL,
0, &nvdb, sizeof nvdb, &bytes, NULL))
debug_printf ("DeviceIoControl (%s) failed, %E", full_path.get_win32 ());
debug_printf ("DeviceIoControl (%s) failed, %E", full_path);
else
totalc = nvdb.TotalClusters.QuadPart;
CloseHandle (hdl);