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

gbellato
12.23.2006 d408e72de6b31ec6e44a073beb47c067f09fea78
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)