diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-10-10 15:46:17 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-10-10 21:50:26 +0200 |
commit | 5a7a1b35be01b7461549a2202ccabd3608b054a1 (patch) | |
tree | f45d232ce0c7004d96ed540f126220c6796e2b04 /source4 | |
parent | 2cd76b0931582463a6e72df227f3e100dfb00f84 (diff) | |
download | samba-5a7a1b35be01b7461549a2202ccabd3608b054a1.tar.gz samba-5a7a1b35be01b7461549a2202ccabd3608b054a1.tar.bz2 samba-5a7a1b35be01b7461549a2202ccabd3608b054a1.zip |
libcli/cldap: pass tevent_context to cldap_search_send()
metze
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/ldap/cldapbench.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/ldap/cldapbench.c b/source4/torture/ldap/cldapbench.c index 118881d034..9b87ae3138 100644 --- a/source4/torture/ldap/cldapbench.c +++ b/source4/torture/ldap/cldapbench.c @@ -172,7 +172,7 @@ static bool bench_cldap_rootdse(struct torture_context *tctx, const char *addres while (timeval_elapsed(&tv) < timelimit) { while (num_sent - (state->pass_count+state->fail_count) < 10) { struct tevent_req *req; - req = cldap_search_send(state, cldap, &search); + req = cldap_search_send(state, tctx->ev, cldap, &search); tevent_req_set_callback(req, request_rootdse_handler, state); |