[REACTOS] Fix build with VS 17.14.2 / CL 19.44.35207.1

This commit is contained in:
Timo Kreuzer 2025-05-28 21:56:38 +03:00
parent d663eb4466
commit e431470ff9
13 changed files with 43 additions and 14 deletions

View file

@ -4579,10 +4579,13 @@ NTSTATUS nfs41_QueryVolumeInformation(
status = STATUS_SUCCESS;
goto out;
}
#ifndef __REACTOS__
// FileAccessInformation isn't the correct enum type!
// It has the value 8, which is FileFsObjectIdInformation
case FileAccessInformation:
status = STATUS_NOT_SUPPORTED;
goto out;
#endif
case FileFsAttributeInformation:
if (RxContext->Info.LengthRemaining < FS_ATTR_LEN) {
RxContext->InformationToReturn = FS_ATTR_LEN;