Skip to content
Snippets Groups Projects
Commit 10588da3 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Print tag with SASL in progress operations error.

parent ddb9755b
Branches
Tags
No related merge requests found
......@@ -730,13 +730,13 @@ connection_operation( void *arg_v )
num_ops_initiated++;
ldap_pvt_thread_mutex_unlock( &num_ops_mutex );
if( conn->c_bind_in_progress == 1 && tag != LDAP_REQ_BIND ) {
Debug( LDAP_DEBUG_ANY,
"connection_operation: SASL bind in progress.\n",
0, 0, 0 );
send_ldap_result( conn, arg->co_op, LDAP_OPERATIONS_ERROR,
if( conn->c_bind_in_progress && tag != LDAP_REQ_BIND ) {
Debug( LDAP_DEBUG_ANY, "connection_operation: "
"error: SASL bind in progress (tag=%ld).\n",
(long) tag, 0, 0 );
send_ldap_result( conn, arg->co_op,
rc = LDAP_OPERATIONS_ERROR,
NULL, "SASL bind in progress", NULL, NULL );
rc = LDAP_OPERATIONS_ERROR;
goto operations_error;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment