mirror of
https://github.com/reactos/reactos.git
synced 2024-11-17 12:27:17 +00:00
Switched the sense of the onlyLoopback flag in getNumNonLoopbackAdapters
and kin. I had the sense of needing only loopback adapters or all adapters inverted. Our info ioctl still misidentifies the adapters with respect to loopback and not. svn path=/trunk/; revision=9788
This commit is contained in:
parent
16ea2c47a7
commit
1fe3a2d6c3
1 changed files with 3 additions and 2 deletions
|
@ -393,7 +393,7 @@ static NTSTATUS getInterfaceInfoSet( HANDLE tcpFile,
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
static DWORD getNumInterfacesInt(BOOL onlyLoopback)
|
||||
static DWORD getNumInterfacesInt(BOOL onlyNonLoopback)
|
||||
{
|
||||
DWORD numEntities, numInterfaces = 0;
|
||||
TDIEntityID *entitySet;
|
||||
|
@ -419,7 +419,8 @@ static DWORD getNumInterfacesInt(BOOL onlyLoopback)
|
|||
|
||||
for( i = 0; i < numEntities; i++ ) {
|
||||
if( isInterface( &entitySet[i] ) &&
|
||||
(!onlyLoopback || isLoopback( tcpFile, &entitySet[i] )) )
|
||||
(!onlyNonLoopback ||
|
||||
(onlyNonLoopback && !isLoopback( tcpFile, &entitySet[i] ))) )
|
||||
numInterfaces++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue