From: James Peach Date: Fri, 9 Mar 2007 19:28:35 +0000 (+0000) Subject: r21779: I missd a call to krb5_get_init_creds_opt_alloc in r21778. X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~963 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f6c2826aa1ac240b02122a40fe9a1ccabaaaf27;p=thirdparty%2Fsamba.git r21779: I missd a call to krb5_get_init_creds_opt_alloc in r21778. --- diff --git a/source/libads/kerberos.c b/source/libads/kerberos.c index 1c0e85dd557..b6627075b02 100644 --- a/source/libads/kerberos.c +++ b/source/libads/kerberos.c @@ -101,7 +101,7 @@ int kerberos_kinit_password_ext(const char *principal, return code; } - code = krb5_get_init_creds_opt_alloc(ctx, &opt); + code = smb_krb5_get_init_creds_opt_alloc(ctx, &opt); if (code) { krb5_cc_close(ctx, cc); krb5_free_context(ctx);