Author: hpoussin Date: Tue Sep 5 02:16:43 2006 New Revision: 23920
URL: http://svn.reactos.org/svn/reactos?rev=23920&view=rev Log: Allow allow lower case when being called
Modified: trunk/reactos/dll/win32/fmifs/format.c
Modified: trunk/reactos/dll/win32/fmifs/format.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/fmifs/format.c?re... ============================================================================== --- trunk/reactos/dll/win32/fmifs/format.c (original) +++ trunk/reactos/dll/win32/fmifs/format.c Tue Sep 5 02:16:43 2006 @@ -50,7 +50,7 @@
#if 1 DPRINT1("Warning: use GetVolumeNameForVolumeMountPointW() instead!\n"); - swprintf(VolumeName, L"\\.\%c:", DriveRoot[0]); + swprintf(VolumeName, L"\??\%c:", towupper(DriveRoot[0])); RtlCreateUnicodeString(&usDriveRoot, VolumeName); /* Code disabled as long as our storage stack doesn't understand IOCTL_MOUNTDEV_QUERY_DEVICE_NAME */ #else