summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 09:12:58 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:47:45 +0100
commit5d2574edd24464c0b38c6f2e80382b01a82e00d0 (patch)
treef0a5508ec09640e8f5c181c846a1b8a3cc6b49e1 /source4/auth
parent3d5bb24a7b6e772ebc15e1d6063d9a8fd97d9ce7 (diff)
downloadsamba-5d2574edd24464c0b38c6f2e80382b01a82e00d0.tar.gz
samba-5d2574edd24464c0b38c6f2e80382b01a82e00d0.tar.bz2
samba-5d2574edd24464c0b38c6f2e80382b01a82e00d0.zip
s4:auth/kerberos: make use of samba_tevent_context_init()
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/kerberos/krb5_init_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/kerberos/krb5_init_context.c b/source4/auth/kerberos/krb5_init_context.c
index e770f1287f..12aab3404f 100644
--- a/source4/auth/kerberos/krb5_init_context.c
+++ b/source4/auth/kerberos/krb5_init_context.c
@@ -233,7 +233,7 @@ krb5_error_code smb_krb5_send_and_recv_func(krb5_context context,
if (!data) {
/* If no event context was available, then create one for this loop */
- ev = tevent_context_init(tmp_ctx);
+ ev = samba_tevent_context_init(tmp_ctx);
if (!ev) {
talloc_free(tmp_ctx);
return ENOMEM;