You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2018/06/05 08:56:09 UTC

[directory-server] 01/02: Fixed a toString() method

This is an automated email from the ASF dual-hosted git repository.

elecharny pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-server.git

commit e9d808cc27f2bc3437e1231fc755580e8be39e0b
Author: Emmanuel Lécharny <el...@symas.com>
AuthorDate: Tue Jun 5 10:54:18 2018 +0200

    Fixed a toString() method
---
 .../src/main/java/org/apache/directory/server/ldap/LdapSession.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapSession.java b/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapSession.java
index 3e6f274..b37dcd0 100644
--- a/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapSession.java
+++ b/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapSession.java
@@ -598,7 +598,7 @@ public class LdapSession
 
         if ( principal != null )
         {
-            sb.append( principal.getName() );
+            sb.append( principal );
             sb.append( "," );
         }
 

-- 
To stop receiving notification emails like this one, please contact
elecharny@apache.org.