[SHELL32] DoGetProductType should check "LanmanNT" value.

CORE-13795
This commit is contained in:
Katayama Hirofumi MZ
2020-02-11 13:11:58 +09:00
parent eb227153e5
commit 9e53e7cd5b

View File

@@ -92,6 +92,8 @@ DoGetProductType(PNT_PRODUCT_TYPE ProductType)
{
if (lstrcmpW(szValue, L"WinNT") == 0)
*ProductType = NtProductWinNt;
else if (lstrcmpW(szValue, L"LanmanNT") == 0)
*ProductType = NtProductLanManNt;
}
s_dwProductType = *ProductType;