From 7adb93986ace907531875e25be1f94d735fbb068 Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Mon, 08 Dec 2008 08:03:33 +0000
Subject: [PATCH] Merge the replication-service branch with the OpenDS trunk

---
 opendj-sdk/opends/src/server/org/opends/server/replication/protocol/InitializeRequestMsg.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/replication/protocol/InitializeRequestMsg.java b/opendj-sdk/opends/src/server/org/opends/server/replication/protocol/InitializeRequestMsg.java
index 668bb2d..ebe3adb 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/replication/protocol/InitializeRequestMsg.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/replication/protocol/InitializeRequestMsg.java
@@ -49,10 +49,10 @@
    * @param destination destination of this message
    * @param senderID serverID of the server that will send this message
    */
-  public InitializeRequestMsg(DN baseDn, short senderID, short destination)
+  public InitializeRequestMsg(String baseDn, short senderID, short destination)
   {
     super(senderID, destination);
-    this.baseDn = baseDn.toNormalizedString();
+    this.baseDn = baseDn;
   }
 
   /**

--
Gitblit v1.10.0