1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-22 16:23:49 +03:00

r1476: Don't print messages about the CCACHE not being found - this is normal.

Andrew Bartlett
This commit is contained in:
Andrew Bartlett
2004-07-13 06:39:55 +00:00
committed by Gerald (Jerry) Carter
parent de5da66939
commit 30d88580ef

View File

@@ -177,13 +177,17 @@ static NTSTATUS gensec_krb5_client_start(struct gensec_security *gensec_security
case KRB5KDC_ERR_PREAUTH_FAILED:
case KRB5KRB_AP_ERR_TKT_EXPIRED:
case KRB5_CC_END:
{
DEBUG(3, ("kerberos: %s\n",
error_message(ret)));
/* fall down to remaining code */
}
/* just don't print a message for these really ordinary messages */
case KRB5_FCC_NOFILE:
case KRB5_CC_NOTFOUND:
{
char *password;
time_t kdc_time;
DEBUG(3, ("kerberos: %s\n",
error_message(ret)));
nt_status = gensec_get_password(gensec_security,
gensec_security->mem_ctx,
&password);