import error namespace cleanup from HEAD

This commit is contained in:
Pierangelo Masarati 2004-07-26 07:57:36 +00:00
parent 6ff83c11a1
commit 7415de8ed1

View File

@ -915,7 +915,7 @@ ldap_url_parselist_ext (LDAPURLDesc **ludlist, const char *url, const char *sep
urls = ldap_str2charray(url, sep);
if (urls == NULL)
return LDAP_NO_MEMORY;
return LDAP_URL_ERR_MEM;
/* count the URLs... */
for (i = 0; urls[i] != NULL; i++) ;
@ -932,7 +932,7 @@ ldap_url_parselist_ext (LDAPURLDesc **ludlist, const char *url, const char *sep
*ludlist = ludp;
}
ldap_charray_free(urls);
return LDAP_SUCCESS;
return LDAP_URL_SUCCESS;
}
int