summaryrefslogtreecommitdiffstats
path: root/source4/winbind/wb_connect_lsa.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-01-14 11:55:19 +0100
committerGünther Deschner <gd@samba.org>2014-01-16 16:22:52 +0100
commit59bc7cb0df59c0030ff404e845b3fda048c6ef73 (patch)
tree762e52502cdc1472f17ec87626e0fc1764c1d330 /source4/winbind/wb_connect_lsa.c
parent00d616e104b4828a157492fa0c8c09b981bcdfb9 (diff)
downloadsamba-59bc7cb0df59c0030ff404e845b3fda048c6ef73.tar.gz
samba-59bc7cb0df59c0030ff404e845b3fda048c6ef73.tar.xz
samba-59bc7cb0df59c0030ff404e845b3fda048c6ef73.zip
s4:winbind: make clear that we use the global tevent_context
We should avoid using the tevent_context pointer on a dcecli_connection, it's the same as the global per task one anyway. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
Diffstat (limited to 'source4/winbind/wb_connect_lsa.c')
-rw-r--r--source4/winbind/wb_connect_lsa.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/winbind/wb_connect_lsa.c b/source4/winbind/wb_connect_lsa.c
index 01bd23bd784..3bf02a0ed09 100644
--- a/source4/winbind/wb_connect_lsa.c
+++ b/source4/winbind/wb_connect_lsa.c
@@ -26,6 +26,7 @@
#include "librpc/gen_ndr/ndr_lsa_c.h"
#include "winbind/wb_server.h"
+#include "smbd/service_task.h"
/* Helper to initialize LSA with a specific auth methods. Verify by opening
* the LSA policy. */
@@ -51,7 +52,7 @@ struct composite_context *wb_init_lsa_send(TALLOC_CTX *mem_ctx,
struct composite_context *result, *ctx;
struct init_lsa_state *state;
- result = composite_create(mem_ctx, domain->netlogon_pipe->conn->event_ctx);
+ result = composite_create(mem_ctx, domain->service->task->event_ctx);
if (result == NULL) goto failed;
state = talloc(result, struct init_lsa_state);