From 2cd76b0931582463a6e72df227f3e100dfb00f84 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 10 Oct 2011 15:42:57 +0200 Subject: libcli/cldap: pass tevent_context to cldap_netlogon_send() metze --- source4/libcli/finddcs_cldap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/libcli') 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; } -- cgit