From abbed187342f34db1ae1e911f2b72808739396f3 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 10 Dec 2008 11:39:19 +0000
Subject: [PATCH] Fix for issue 3653 (status: LDIF Connection Handler should be displayed in the connection handlers list)

---
 opends/src/server/org/opends/server/tools/status/StatusCli.java |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)

diff --git a/opends/src/server/org/opends/server/tools/status/StatusCli.java b/opends/src/server/org/opends/server/tools/status/StatusCli.java
index 99b9de1..d92a52a 100644
--- a/opends/src/server/org/opends/server/tools/status/StatusCli.java
+++ b/opends/src/server/org/opends/server/tools/status/StatusCli.java
@@ -109,8 +109,6 @@
 
   // This CLI is always using the administration connector with SSL
   private final boolean alwaysSSL = true;
-  private boolean useSSL = true;
-  private boolean useStartTLS = false;
 
   /**
    * The enumeration containing the different return codes that the command-line
@@ -775,10 +773,7 @@
       new LinkedHashSet<ConnectionHandlerDescriptor>();
     for (ConnectionHandlerDescriptor listener: allHandlers)
     {
-      if (listener.getProtocol() != ConnectionHandlerDescriptor.Protocol.LDIF)
-      {
-        connectionHandlers.add(listener);
-      }
+      connectionHandlers.add(listener);
     }
 
     if (connectionHandlers.size() == 0)

--
Gitblit v1.10.0