mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-27 17:19:19 -05:00
ITS#8092 fix previous fix.
slap_auxprop_lookup() returns void with old sasl versions.
This commit is contained in:
parent
f2b96c19cc
commit
a59f336a61
1 changed files with 5 additions and 2 deletions
|
|
@ -347,8 +347,10 @@ slap_auxprop_lookup(
|
|||
}
|
||||
|
||||
/* we don't know anything about this, ignore it */
|
||||
if ( !conn )
|
||||
return SASL_OK;
|
||||
if ( !conn ) {
|
||||
rc == LDAP_SUCCESS;
|
||||
goto done;
|
||||
}
|
||||
|
||||
/* Now see what else needs to be fetched */
|
||||
for( i = 0; sl.list[i].name; i++ ) {
|
||||
|
|
@ -503,6 +505,7 @@ retry_dontUseCopy:;
|
|||
}
|
||||
}
|
||||
}
|
||||
done:;
|
||||
#if SASL_VERSION_FULL >= 0x020118
|
||||
return rc != LDAP_SUCCESS ? SASL_FAIL : SASL_OK;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue