Skip to content
Snippets Groups Projects
Commit 5bc5ae6b authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6309

parent cfaceae8
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@ OpenLDAP 2.4.20 Engineering
Fixed slapd configArgs initialization (ITS#6363)
Fixed slapd debug handling of LDAP_DEBUG_ANY (ITS#6324)
Fixed slapd inclusion of ac/unistd.h (ITS#6342)
Fixed slapd invalid dn log message (ITS#6309)
Fixed slapd lockup on shutdown (ITS#6372)
Fixed slapd termination for one level DNs (ITS#6338)
Fixed slapd unused parameter (ITS#6356)
......
......@@ -112,7 +112,7 @@ do_search(
rs->sr_err = dnPrettyNormal( NULL, &base, &op->o_req_dn, &op->o_req_ndn, op->o_tmpmemctx );
if( rs->sr_err != LDAP_SUCCESS ) {
Debug( LDAP_DEBUG_ANY, "%s do_search: invalid dn (%s)\n",
Debug( LDAP_DEBUG_ANY, "%s do_search: invalid dn: \"%s\"\n",
op->o_log_prefix, base.bv_val, 0 );
send_ldap_error( op, rs, LDAP_INVALID_DN_SYNTAX, "invalid DN" );
goto return_results;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment