diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-10-10 15:42:57 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-10-10 21:50:26 +0200 |
commit | 2cd76b0931582463a6e72df227f3e100dfb00f84 (patch) | |
tree | 56f495ae36b37ae59684be3fdea831500eee0871 /source4/libcli | |
parent | 3ed85d7c69f9b68a709572ab221b9da1c17a146e (diff) | |
download | samba-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.c | 3 |
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; } |