diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-10-10 15:58:24 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-10-10 23:23:07 +0200 |
commit | b787b6e1bd70f90702568fa4503c1d2e6ca0a59e (patch) | |
tree | 2cc43290e8d0e138d960591ac96c36268a724f17 /source4/libcli | |
parent | af24591a20c7412862c74f7e088e9d59bf667309 (diff) | |
download | samba-b787b6e1bd70f90702568fa4503c1d2e6ca0a59e.tar.gz samba-b787b6e1bd70f90702568fa4503c1d2e6ca0a59e.tar.bz2 samba-b787b6e1bd70f90702568fa4503c1d2e6ca0a59e.zip |
libcli/cldap: don't pass tevent_context to cldap_socket_init()
metze
Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Mon Oct 10 23:23:07 CEST 2011 on sn-devel-104
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/finddcs_cldap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/libcli/finddcs_cldap.c b/source4/libcli/finddcs_cldap.c index ee5278f051..0643135cae 100644 --- a/source4/libcli/finddcs_cldap.c +++ b/source4/libcli/finddcs_cldap.c @@ -131,7 +131,7 @@ static bool finddcs_cldap_ipaddress(struct finddcs_cldap_state *state, struct fi } state->srv_addresses[1] = NULL; state->srv_address_index = 0; - status = cldap_socket_init(state, state->ev, NULL, NULL, &state->cldap); + status = cldap_socket_init(state, NULL, NULL, &state->cldap); if (tevent_req_nterror(state->req, status)) { return false; } @@ -307,7 +307,7 @@ static void finddcs_cldap_name_resolved(struct composite_context *ctx) state->srv_address_index = 0; - status = cldap_socket_init(state, state->ev, NULL, NULL, &state->cldap); + status = cldap_socket_init(state, NULL, NULL, &state->cldap); if (tevent_req_nterror(state->req, status)) { return; } @@ -338,7 +338,7 @@ static void finddcs_cldap_srv_resolved(struct composite_context *ctx) state->srv_address_index = 0; - status = cldap_socket_init(state, state->ev, NULL, NULL, &state->cldap); + status = cldap_socket_init(state, NULL, NULL, &state->cldap); if (tevent_req_nterror(state->req, status)) { return; } |