diff --git a/dll/win32/iphlpapi/ipstats_reactos.c b/dll/win32/iphlpapi/ipstats_reactos.c index 6bf3df63e9..b76f88210b 100644 --- a/dll/win32/iphlpapi/ipstats_reactos.c +++ b/dll/win32/iphlpapi/ipstats_reactos.c @@ -625,8 +625,9 @@ DWORD getNumUdpEntries(void) status = tdiGetEntityIDSet( tcpFile, &entitySet, &numEntities ); for( i = 0; i < numEntities; i++ ) { - if( entitySet[i].tei_entity == CL_TL_ENTITY && - hasArp( tcpFile, &entitySet[i] ) ) { + /* Commented out the hasArp test because it is not consistent */ + if( entitySet[i].tei_entity == CL_TL_ENTITY /* && + hasArp( tcpFile, &entitySet[i] )*/ ) { status = tdiGetSetOfThings( tcpFile, INFO_CLASS_PROTOCOL, @@ -683,8 +684,9 @@ PVOID getUdpTable(CLASS_TABLE Class) status = tdiGetEntityIDSet( tcpFile, &entitySet, &numEntities ); for( i = 0; i < numEntities; i++ ) { - if( entitySet[i].tei_entity == CL_TL_ENTITY && - hasArp( tcpFile, &entitySet[i] ) ) { + /* Commented out the hasArp test because it is not consistent */ + if( entitySet[i].tei_entity == CL_TL_ENTITY /* && + hasArp( tcpFile, &entitySet[i] )*/ ) { status = tdiGetSetOfThings( tcpFile, INFO_CLASS_PROTOCOL,