[Date Prev][Date Next] [Chronological] [Thread] [Top]

ldap_explode_dn



Hello,

I just build the openldap 2.1.3 and I have a small problem with the function
ldap_explode_dn
the returned value[0] is converted but i don't know which encoding is used :

  char*                 pDN;
  char**                pTmp;

  pTmp = ldap_explode_dn(pDN, true);

the value of pDN is :		"cn=Katsiboubas
Angélique,br=Internal,o=Eurofer,c=be" (utf8)
and the value returned is :	"Katsiboubas Ang\C3\A9lique"

In 2.0.23 this work fine (the return value is "Katsiboubas Angélique")


Any idee ?

Thanks in advance

Guy