https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9e53e7cd5bdb29f1dc1584...
commit 9e53e7cd5bdb29f1dc1584abdf3827ef02113776 Author: Katayama Hirofumi MZ katayama.hirofumi.mz@gmail.com AuthorDate: Tue Feb 11 13:11:58 2020 +0900 Commit: Katayama Hirofumi MZ katayama.hirofumi.mz@gmail.com CommitDate: Tue Feb 11 13:11:58 2020 +0900
[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;