Commit f7883024 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

inetmib1/tests: Fix duplicate expressions in if condition.

parent 3a8a9620
......@@ -189,8 +189,8 @@ static void testQuery(void)
vars[2].name.idLength))
moreData = FALSE;
else if (!SnmpUtilOidCmp(&vars[0].name, &vars2[0].name) ||
!SnmpUtilOidCmp(&vars[0].name, &vars2[0].name) ||
!SnmpUtilOidCmp(&vars[0].name, &vars2[0].name))
!SnmpUtilOidCmp(&vars[1].name, &vars2[1].name) ||
!SnmpUtilOidCmp(&vars[2].name, &vars2[2].name))
{
/* If the OID isn't modified, the function isn't implemented on this
* platform, skip the remaining tests.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment