mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
more exploitation of efficient parsing
This commit is contained in:
parent
f2a80ff827
commit
cd8eb327d6
1 changed files with 2 additions and 4 deletions
|
|
@ -620,15 +620,13 @@ dnParent(
|
|||
const char *dn,
|
||||
const char **pdn )
|
||||
{
|
||||
LDAPRDN *tmpRDN;
|
||||
const char *p;
|
||||
int rc;
|
||||
|
||||
rc = ldap_str2rdn( dn, &tmpRDN, &p, LDAP_DN_FORMAT_LDAP );
|
||||
rc = ldap_str2rdn( dn, NULL, &p, LDAP_DN_FORMAT_LDAP | LDAP_DN_SKIP );
|
||||
if ( rc != LDAP_SUCCESS ) {
|
||||
return rc;
|
||||
}
|
||||
ldap_rdnfree( tmpRDN );
|
||||
|
||||
assert( DN_SEPARATOR( p[ 0 ] ) );
|
||||
p++;
|
||||
|
|
@ -715,7 +713,7 @@ dn_rdnlen(
|
|||
struct berval *dn_in )
|
||||
{
|
||||
int rc;
|
||||
char *p;
|
||||
const char *p;
|
||||
|
||||
assert( dn_in );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue