From 274227c07205d3dbd7125ed75ed6d2acdd3c9ce0 Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Fri, 10 Jan 2014 10:02:47 +0000
Subject: [PATCH] 

---
 opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPAttribute.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPAttribute.java b/opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPAttribute.java
index 835385e..1308adf 100644
--- a/opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPAttribute.java
+++ b/opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPAttribute.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2006-2009 Sun Microsystems, Inc.
- *      Portions copyright 2013 ForgeRock AS
+ *      Portions Copyright 2013-2014 ForgeRock AS
  */
 package org.opends.server.protocols.ldap;
 
@@ -35,6 +35,7 @@
 
 import org.opends.messages.Message;
 import org.opends.server.types.*;
+import org.forgerock.opendj.ldap.ByteString;
 
 /**
  * This class defines the data structures and methods to use when interacting
@@ -352,7 +353,7 @@
 
     for (ByteString value : values)
     {
-      value.toHexPlusAscii(buffer, indent+4);
+      buffer.append(value.toHexPlusAsciiString(indent+4));
     }
   }
 }

--
Gitblit v1.10.0