diff options
author | Andrew Bartlett <abartlet@samba.org> | 2014-04-17 22:35:33 +1200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2014-07-15 12:46:16 +0200 |
commit | e4bf67aed49b16610f517f871576bb644312c9c1 (patch) | |
tree | 19ca85a8a599e269a26e2669b4bfbb18add089e7 /auth | |
parent | c0091d0ccf60e368ffe30346ca2cd937186731c6 (diff) | |
download | samba-e4bf67aed49b16610f517f871576bb644312c9c1.tar.gz |
kerberos: Remove un-used event context argument from smb_krb5_init_context()
The event context here was only specified in the server or admin-tool
context, which does not do network communication, so this only caused
a talloc_reference() and never any useful result.
The actual network communication code sets an event context directly
before making the network call.
Andrew Bartlett
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Mon Apr 28 02:24:57 CEST 2014 on sn-devel-104
(cherry picked from commit 086c06e361962e1c118d8eed2316e9df7834ae8b)
Diffstat (limited to 'auth')
-rw-r--r-- | auth/credentials/credentials_krb5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/credentials/credentials_krb5.c b/auth/credentials/credentials_krb5.c index cc51f56d79..ec6a695fd9 100644 --- a/auth/credentials/credentials_krb5.c +++ b/auth/credentials/credentials_krb5.c @@ -48,7 +48,7 @@ _PUBLIC_ int cli_credentials_get_krb5_context(struct cli_credentials *cred, return 0; } - ret = smb_krb5_init_context(cred, NULL, lp_ctx, + ret = smb_krb5_init_context(cred, lp_ctx, &cred->smb_krb5_context); if (ret) { cred->smb_krb5_context = NULL; |