Skip to content
Snippets Groups Projects
Commit 574090d1 authored by Howard Chu's avatar Howard Chu
Browse files

Fix slap_sasl2dn(), performing internal search with wrong op.o_ndn.

parent 1363d4bf
No related branches found
No related tags found
No related merge requests found
......@@ -618,7 +618,7 @@ void slap_sasl2dn( Connection *conn,
op.o_tag = LDAP_REQ_SEARCH;
op.o_protocol = LDAP_VERSION3;
op.o_ndn = *saslname;
op.o_ndn = conn->c_ndn;
op.o_callback = &cb;
op.o_time = slap_get_time();
op.o_do_not_cache = 1;
......
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