diff options
author | Günther Deschner <gd@samba.org> | 2006-03-20 19:05:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:38 -0500 |
commit | 485a286a65d3b37f424f5701179f73c99eb9b5b9 (patch) | |
tree | 3447057a50073442149f12b4562396091406f0b6 /source3/utils | |
parent | 4b000b2c95ec064db18d59bff9bf9957717632c4 (diff) | |
download | samba-485a286a65d3b37f424f5701179f73c99eb9b5b9.tar.gz samba-485a286a65d3b37f424f5701179f73c99eb9b5b9.tar.xz samba-485a286a65d3b37f424f5701179f73c99eb9b5b9.zip |
r14585: Tighten argument list of kerberos_kinit_password again,
kerberos_kinit_password_ext provides access to more options.
Guenther
(This used to be commit afc519530f94b420b305fc28f83c16db671d0d7f)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/ntlm_auth.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index ac532350446..f7e3263fe0f 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -1191,8 +1191,7 @@ static BOOL manage_client_krb5_init(SPNEGO_DATA spnego) pstr_sprintf(user, "%s@%s", opt_username, opt_domain); - if ((retval = kerberos_kinit_password(user, opt_password, - 0, NULL, NULL, NULL, False, 0))) { + if ((retval = kerberos_kinit_password(user, opt_password, 0, NULL))) { DEBUG(10, ("Requesting TGT failed: %s\n", error_message(retval))); return False; } |