From: Kurt Zeilenga Date: Tue, 15 Nov 2005 22:45:44 +0000 (+0000) Subject: Additional error detail X-Git-Tag: OPENLDAP_REL_ENG_2_2_MP~9 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8688a96b9f0287d203f1452673a83884839968fd;p=openldap Additional error detail --- diff --git a/servers/slapd/sasl.c b/servers/slapd/sasl.c index 58f8a96342..9ba8c695a9 100644 --- a/servers/slapd/sasl.c +++ b/servers/slapd/sasl.c @@ -1447,6 +1447,9 @@ int slap_sasl_bind( Operation *op, SlapReply *rs ) } } else if ( sc == SASL_CONTINUE ) { rs->sr_err = LDAP_SASL_BIND_IN_PROGRESS, +#if SASL_VERSION_MAJOR >= 2 + rs->sr_text = sasl_errdetail( ctx ); +#endif rs->sr_sasldata = &response; send_ldap_sasl( op, rs ); @@ -1459,9 +1462,7 @@ int slap_sasl_bind( Operation *op, SlapReply *rs ) } #if SASL_VERSION_MAJOR < 2 - if( response.bv_len ) { - ch_free( response.bv_val ); - } + if( response.bv_len ) ch_free( response.bv_val ); #endif Debug(LDAP_DEBUG_TRACE, "<== slap_sasl_bind: rc=%d\n", rs->sr_err, 0, 0);