aboutsummaryrefslogtreecommitdiff
path: root/src/windows/leashdll/krb5routines.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/leashdll/krb5routines.c')
-rw-r--r--src/windows/leashdll/krb5routines.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/windows/leashdll/krb5routines.c b/src/windows/leashdll/krb5routines.c
index ff4f360..587f044 100644
--- a/src/windows/leashdll/krb5routines.c
+++ b/src/windows/leashdll/krb5routines.c
@@ -121,8 +121,8 @@ LeashKRB5_renew(void)
code = pkrb5_get_renewed_creds(ctx, &my_creds, me, cc, NULL);
pkrb5_cc_set_flags(ctx, cc, KRB5_TC_NOTICKET);
if (code) {
- if ( code != KRB5KDC_ERR_ETYPE_NOSUPP ||
- code != KRB5_KDC_UNREACH)
+ if (code != KRB5KDC_ERR_ETYPE_NOSUPP && code != KRB5_KDC_UNREACH &&
+ code != KRB5_CC_NOTFOUND)
Leash_krb5_error(code, "krb5_get_renewed_creds()", 0, &ctx, &cc);
goto cleanup;
}