[DEVMGR]: Keep the computer name as it is, don't lower-case it.

svn path=/trunk/; revision=70555
This commit is contained in:
Hermès Bélusca-Maïto 2016-01-08 21:14:13 +00:00
parent adec9641bc
commit 5e7a5d0d57

View file

@ -52,8 +52,7 @@ CRootNode::SetupNode()
// The root name is the computer name
DWORD Size = DISPLAY_NAME_LEN;
if (GetComputerNameW(m_DisplayName, &Size))
_wcslwr(m_DisplayName);
GetComputerNameW(m_DisplayName, &Size);
return true;
}