diff options
author | Jim McDonough <jmcd@samba.org> | 2004-03-24 17:32:55 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2004-03-24 17:32:55 +0000 |
commit | 9a8e30d04b1cfc53e8c8949a56d4f1cf5aa26501 (patch) | |
tree | e483ee3c5a38bfd45503d3bd18c0b25904949edc /source3/utils | |
parent | 7d7b6190b0d07441ded54f096e7f95f51dc31024 (diff) | |
download | samba-9a8e30d04b1cfc53e8c8949a56d4f1cf5aa26501.tar.gz samba-9a8e30d04b1cfc53e8c8949a56d4f1cf5aa26501.tar.bz2 samba-9a8e30d04b1cfc53e8c8949a56d4f1cf5aa26501.zip |
Fix bugzilla # 1208
Winbind tickets expired. We now check the expiration time, and acquire
new tickets. We couln't rely on renewing them, because if we didn't get
a request before they expired, we wouldn't have renewed them. Also, there
is a one-week limit in MS on renewal life, so new tickets would have been
needed after a week anyway. Default is 10 hours, so we should only be
acquiring them that often, unless the configuration on the DC is changed (and
the minimum is 1 hour).
(This used to be commit c2436c433afaab4006554a86307f76b6689d6929)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/ntlm_auth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index ec0f404176..2213a9bae3 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -1111,7 +1111,8 @@ 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))) { + if ((retval = kerberos_kinit_password(user, opt_password, + 0, NULL))) { DEBUG(10, ("Requesting TGT failed: %s\n", error_message(retval))); x_fprintf(x_stdout, "NA\n"); return True; |