mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
14.20.2011 9c3beafe08f9b4cbc8efa5aba1fcf3d4d201fc6a
Preparation work for OPENDJ-308: Implement access log filtering and configurable message format

Fix AddressMask unit test failure caused by earlier commit.


1 files modified
3 ■■■■ changed files
opends/tests/unit-tests-testng/src/server/org/opends/server/types/TestAddressMask.java 3 ●●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/types/TestAddressMask.java
@@ -257,7 +257,8 @@
    }
    for(int j = 0; j < addrs.length; j++) {
      try  {
        InetAddress addr = InetAddress.getByName(addrs[j]);
        InetAddress addr = InetAddress.getByAddress(hostNames[j], InetAddress
            .getByName(addrs[j]).getAddress());
        if(!AddressMask.maskListContains(addr, m)) {
          ret=false;
          break;