diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-17 01:03:18 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-17 01:03:18 +0200 |
commit | 1efbd5fbf6b0f606ed29a763e2adfa6f99c6beac (patch) | |
tree | 81a52c7c14fb91332ae12d7d664bc143aad664aa /source4/client | |
parent | 4b9c7df9b7465a360e7a528a116ed3740447b7be (diff) | |
download | samba-1efbd5fbf6b0f606ed29a763e2adfa6f99c6beac.tar.gz samba-1efbd5fbf6b0f606ed29a763e2adfa6f99c6beac.tar.bz2 samba-1efbd5fbf6b0f606ed29a763e2adfa6f99c6beac.zip |
Remove event context tracking from the credentials struct.
(This used to be commit 4d7fc946b2ec50e774689c9036423b6feef99b8e)
Diffstat (limited to 'source4/client')
-rw-r--r-- | source4/client/client.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index 775aa69d37..ef88913c4d 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -32,6 +32,7 @@ #include "includes.h" #include "version.h" #include "libcli/libcli.h" +#include "lib/events/events.h" #include "lib/cmdline/popt_common.h" #include "librpc/gen_ndr/ndr_srvsvc_c.h" #include "librpc/gen_ndr/ndr_lsa.h" @@ -3044,7 +3045,7 @@ static bool do_connect(struct smbclient_context *ctx, status = smbcli_full_connection(ctx, &ctx->cli, server, ports, share, NULL, cred, resolve_ctx, - cli_credentials_get_event_context(cred), + event_context_init(NULL), options); if (!NT_STATUS_IS_OK(status)) { d_printf("Connection to \\\\%s\\%s failed - %s\n", |