mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
ITS#4782 quick fix, never send result from proxy authz check.
This commit is contained in:
parent
7d9361e498
commit
08b209ffa9
1 changed files with 2 additions and 2 deletions
|
|
@ -704,7 +704,7 @@ ldap_back_getconn(
|
|||
op->o_dn = op->o_req_dn;
|
||||
op->o_ndn = op->o_req_ndn;
|
||||
}
|
||||
isproxyauthz = ldap_back_is_proxy_authz( op, rs, sendok, binddn, bindcred );
|
||||
isproxyauthz = ldap_back_is_proxy_authz( op, rs, 0, binddn, bindcred );
|
||||
if ( op->o_tag == LDAP_REQ_BIND ) {
|
||||
op->o_dn = save_o_dn;
|
||||
op->o_ndn = save_o_ndn;
|
||||
|
|
@ -1154,7 +1154,7 @@ retry_lock:;
|
|||
*/
|
||||
if ( LDAP_BACK_CONN_ISIDASSERT( lc ) ) {
|
||||
if ( BER_BVISEMPTY( &binddn ) && BER_BVISEMPTY( &bindcred ) ) {
|
||||
ldap_back_is_proxy_authz( op, rs, sendok, &binddn, &bindcred );
|
||||
ldap_back_is_proxy_authz( op, rs, 0, &binddn, &bindcred );
|
||||
}
|
||||
(void)ldap_back_proxy_authz_bind( lc, op, rs, sendok, &binddn, &bindcred );
|
||||
goto done;
|
||||
|
|
|
|||
Loading…
Reference in a new issue