From b787b6e1bd70f90702568fa4503c1d2e6ca0a59e Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 10 Oct 2011 15:58:24 +0200 Subject: libcli/cldap: don't pass tevent_context to cldap_socket_init() metze Autobuild-User: Stefan Metzmacher Autobuild-Date: Mon Oct 10 23:23:07 CEST 2011 on sn-devel-104 --- source3/nmbd/nmbd_processlogon.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3/nmbd') diff --git a/source3/nmbd/nmbd_processlogon.c b/source3/nmbd/nmbd_processlogon.c index f00a8d8e16..43ffd726c6 100644 --- a/source3/nmbd/nmbd_processlogon.c +++ b/source3/nmbd/nmbd_processlogon.c @@ -120,8 +120,7 @@ bool initialize_nmbd_proxy_logon(void) } /* we create a connected udp socket */ - status = cldap_socket_init(ctx, nmbd_event_context(), NULL, - server_addr, &ctx->cldap_sock); + status = cldap_socket_init(ctx, NULL, server_addr, &ctx->cldap_sock); TALLOC_FREE(server_addr); if (!NT_STATUS_IS_OK(status)) { TALLOC_FREE(ctx); -- cgit