From d3a10338d643cf04e89e577ba496c547e0bf7516 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Wed, 28 Feb 2007 21:01:32 +0000
Subject: [PATCH] Add a new key manager which provides the ability to specify which certificate should be presented based on its alias (aka its nickname).  This is used both by server-side code which needs to present a certificate to clients, as well as by client-side code which needs to present a certificate to the server.

---
 opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java b/opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java
index b2bb2ab..4240962 100644
--- a/opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java
+++ b/opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java
@@ -1062,9 +1062,9 @@
       if (certNameAttr == null)
       {
         //
-        // This is fine -- we'll just use the default.
+        // This is fine -- we'll just let the server pick one.
         certNameAttr = new StringConfigAttribute(ATTR_SSL_CERT_NICKNAME,
-            getMessage(msgID), false, false, false, DEFAULT_SSL_CERT_NICKNAME);
+            getMessage(msgID), false, false, false, (String) null);
       }
       return certNameAttr;
     }

--
Gitblit v1.10.0