summaryrefslogtreecommitdiff
path: root/source4/libcli
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-10-10 15:42:57 +0200
committerStefan Metzmacher <metze@samba.org>2011-10-10 21:50:26 +0200
commit2cd76b0931582463a6e72df227f3e100dfb00f84 (patch)
tree56f495ae36b37ae59684be3fdea831500eee0871 /source4/libcli
parent3ed85d7c69f9b68a709572ab221b9da1c17a146e (diff)
downloadsamba-2cd76b0931582463a6e72df227f3e100dfb00f84.tar.gz
samba-2cd76b0931582463a6e72df227f3e100dfb00f84.tar.bz2
samba-2cd76b0931582463a6e72df227f3e100dfb00f84.zip
libcli/cldap: pass tevent_context to cldap_netlogon_send()
metze
Diffstat (limited to 'source4/libcli')
-rw-r--r--source4/libcli/finddcs_cldap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/libcli/finddcs_cldap.c b/source4/libcli/finddcs_cldap.c
index 293641b37f..ee5278f051 100644
--- a/source4/libcli/finddcs_cldap.c
+++ b/source4/libcli/finddcs_cldap.c
@@ -234,7 +234,8 @@ static void finddcs_cldap_next_server(struct finddcs_cldap_state *state)
DEBUG(4,("finddcs: performing CLDAP query on %s\n", state->netlogon->in.dest_address));
- subreq = cldap_netlogon_send(state, state->cldap, state->netlogon);
+ subreq = cldap_netlogon_send(state, state->ev,
+ state->cldap, state->netlogon);
if (tevent_req_nomem(subreq, state->req)) {
return;
}