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/ntvfs | |
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/ntvfs')
-rw-r--r-- | source4/ntvfs/cifs/vfs_cifs.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source4/ntvfs/cifs/vfs_cifs.c b/source4/ntvfs/cifs/vfs_cifs.c index 2feb1a0efe..2b61268733 100644 --- a/source4/ntvfs/cifs/vfs_cifs.c +++ b/source4/ntvfs/cifs/vfs_cifs.c @@ -171,7 +171,6 @@ static NTSTATUS cvfs_connect(struct ntvfs_module_context *ntvfs, if (!credentials) { return NT_STATUS_NO_MEMORY; } - cli_credentials_set_event_context(credentials, ntvfs->ctx->event_ctx); cli_credentials_set_conf(credentials, ntvfs->ctx->lp_ctx); cli_credentials_set_username(credentials, user, CRED_SPECIFIED); if (domain) { @@ -181,7 +180,6 @@ static NTSTATUS cvfs_connect(struct ntvfs_module_context *ntvfs, } else if (machine_account) { DEBUG(5, ("CIFS backend: Using machine account\n")); credentials = cli_credentials_init(private); - cli_credentials_set_event_context(credentials, ntvfs->ctx->event_ctx); cli_credentials_set_conf(credentials, ntvfs->ctx->lp_ctx); if (domain) { cli_credentials_set_domain(credentials, domain, CRED_SPECIFIED); |