From 9e53e7cd5bdb29f1dc1584abdf3827ef02113776 Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Tue, 11 Feb 2020 13:11:58 +0900 Subject: [PATCH] [SHELL32] DoGetProductType should check "LanmanNT" value. CORE-13795 --- dll/win32/shell32/wine/shellpath.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dll/win32/shell32/wine/shellpath.c b/dll/win32/shell32/wine/shellpath.c index 5bf0c98e617..3c7ee6a3529 100644 --- a/dll/win32/shell32/wine/shellpath.c +++ b/dll/win32/shell32/wine/shellpath.c @@ -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;