From 1dd534c2b6ad1607ce6b5f4d6951cbfcebdedd56 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 18 Nov 2009 22:52:26 +0000
Subject: [PATCH] Fix for issue 4295 (Issues with dsreplication interactive mode) The following changes complete the previous fix done for this bug, if we were using dsreplication enable on the installation of one of the servers, the interactive mode failed if the option --trustAll was NOT specified.
---
opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java b/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java
index d7e8d15..e603575 100644
--- a/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java
+++ b/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java
@@ -1163,7 +1163,7 @@
if (!error)
{
- ctx2 = createInitialLdapContextInteracting(ci);
+ ctx2 = createInitialLdapContextInteracting(ci, true);
if (ctx2 == null)
{
@@ -2315,7 +2315,7 @@
if (!error)
{
- ctxDestination = createInitialLdapContextInteracting(ci);
+ ctxDestination = createInitialLdapContextInteracting(ci, true);
if (ctxDestination == null)
{
--
Gitblit v1.10.0