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

pgamba
18.23.2007 3cf4637272ae21317e3c5fb5a53bb1d05bd03c6b
Fix 2416 - authentication pb when setting replication on windows
1 files modified
5 ■■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplLDIFOutputStream.java 5 ●●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplLDIFOutputStream.java
@@ -44,7 +44,7 @@
  // The current number of entries exported
  long numExportedEntries;
  static String newline = System.getProperty("line.separator");
  String entryBuffer = "";
  /**
@@ -81,7 +81,8 @@
    {
      // if we have the bytes for an entry, let's make an entry and send it
      String ebytes = new String(b,startOfEntryIndex,bytesToRead);
      endOfEntryIndex = ebytes.indexOf("\n\n");
      endOfEntryIndex = ebytes.indexOf(newline + newline);
      if ( endOfEntryIndex >= 0 )
      {