Commit 27233428 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

Set the flags for GetVolumeInformation32A.

parent 0aa7fdbd
......@@ -1154,7 +1154,14 @@ BOOL32 WINAPI GetVolumeInformation32A( LPCSTR root, LPSTR label,
else
*filename_len = 255;
}
if (flags) *flags = 0;
if (flags)
{
*flags=0;
if (DOSDrives[drive].flags & DRIVE_CASE_SENSITIVE)
*flags|=FS_CASE_SENSITIVE;
if (DOSDrives[drive].flags & DRIVE_CASE_PRESERVING)
*flags|=FS_CASE_IS_PRESERVED ;
}
if (fsname) {
/* Diablo checks that return code ... */
if (DRIVE_GetType(drive)==TYPE_CDROM)
......
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