Index: reactos/dll/win32/iphlpapi/resinfo_reactos.c =================================================================== --- reactos/dll/win32/iphlpapi/resinfo_reactos.c (revision 35668) +++ reactos/dll/win32/iphlpapi/resinfo_reactos.c (working copy) @@ -224,6 +224,14 @@ } Str = QueryRegistryValueString( hKey, L"NameServer" ); + + /* If NameServer is empty */ + if (!wcslen(Str)) + { + /* Then use DhcpNameServer */ + Str = QueryRegistryValueString( hKey, L"DhcpNameServer" ); + } + ExtraServer = Str ? 1 : 0; ServerCount += ExtraServer;