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

gbellato
12.23.2006 f0f4caa7b330807252d8a86d8ff499e16f9ddd33
opendj-sdk/opends/src/server/org/opends/server/changelog/Changelog.java
@@ -243,7 +243,7 @@
      {
        newSocket =  listenSocket.accept();
        ServerHandler handler = new ServerHandler(
                                     new SerializingProtocolSession(newSocket));
                                     new SocketSession(newSocket));
        handler.start(null);
      } catch (IOException e)
      {
@@ -318,7 +318,7 @@
      socket.connect(ServerAddr, 500);
      ServerHandler handler = new ServerHandler(
                                      new SerializingProtocolSession(socket));
                                      new SocketSession(socket));
      handler.start(baseDn);
    }
    catch (IOException e)