opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -7163,18 +7163,6 @@ errorMessages.add(message); } else if (!SetupUtils.canUseAsPort( listener.getHost(), listener.getPort())) { // Cannot use the specified HostPort: log a message and throw an // InitializationException. int msgID = MSGID_HOST_PORT_CANNOT_BE_USED; String message = getMessage(msgID, listener.toString(), c.getConnectionHandlerName()); logError(ErrorLogCategory.CONNECTION_HANDLING, ErrorLogSeverity.SEVERE_ERROR, message, msgID); errorMessages.add(message); } else { usedListeners.add(listener); opends/src/server/org/opends/server/util/SetupUtils.java
@@ -274,7 +274,7 @@ */ try { new Socket(hostname, port); new Socket().connect(socketAddress, 1000); canUseAsPort = false; } catch (IOException ioe)