[KS] KsQueryInformationFile(): Fix 'FastIoQueryBasicInfo' copypasta (#2236)

Addendum to commit 4725a4fd (r42117).
This commit is contained in:
Serge Gautherie 2020-01-07 15:13:40 +01:00 committed by Hermès BÉLUSCA - MAÏTO
parent fa42794a3a
commit e2b536bcb1

View File

@ -375,8 +375,8 @@ KsQueryInformationFile(
}
else if (FileInformationClass == FileStandardInformation)
{
/* use FastIoQueryBasicInfo routine */
if (FastIoDispatch->FastIoQueryBasicInfo)
/* use FastIoQueryStandardInfo routine */
if (FastIoDispatch->FastIoQueryStandardInfo)
{
return FastIoDispatch->FastIoQueryStandardInfo(FileObject, TRUE, (PFILE_STANDARD_INFORMATION)FileInformation, &IoStatus, DeviceObject);
}