]> git.sur5r.net Git - openldap/commitdiff
Fix LDAP_CONST->const in explode_name(), it failed when LDAP_CONST was empty.
authorHallvard Furuseth <hallvard@openldap.org>
Tue, 13 Jul 1999 06:48:35 +0000 (06:48 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Tue, 13 Jul 1999 06:48:35 +0000 (06:48 +0000)
libraries/libldap/getdn.c

index e26412af07ac47d8de4276941f649ab7d348645d..c69b0b3e45be6fdb461728e51e6170ccbd717df4 100644 (file)
@@ -22,7 +22,7 @@
 
 #include "ldap-int.h"
 
-static char **explode_name( LDAP_CONST char *name, int notypes, int is_dn );
+static char **explode_name( const char *name, int notypes, int is_dn );
 
 char *
 ldap_get_dn( LDAP *ld, LDAPMessage *entry )
@@ -182,7 +182,7 @@ ldap_explode_rdn( LDAP_CONST char *rdn, int notypes )
 }
 
 static char **
-explode_name( LDAP_CONST char *name, int notypes, int is_dn )
+explode_name( const char *name, int notypes, int is_dn )
 {
        const char *p, *q;
        char **parts = NULL;