summaryrefslogtreecommitdiff
path: root/source3/librpc
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2016-11-01 16:32:57 +0100
committerJeremy Allison <jra@samba.org>2016-11-02 05:22:38 +0100
commite217b3ee41cabd8a9d5f88193413e437d268e9b0 (patch)
tree3a14e7cd3ff807186f503b8246dea82f4e85c7e1 /source3/librpc
parent79dd22aacb4c12bd008d9ad354ec5ec088560748 (diff)
downloadsamba-e217b3ee41cabd8a9d5f88193413e437d268e9b0.tar.gz
libcli: Increase the debug level for expired tickets
In libads/sasl.c we do a retry in this case. We should not spam syslog with that. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Wed Nov 2 05:22:38 CET 2016 on sn-devel-144
Diffstat (limited to 'source3/librpc')
-rw-r--r--source3/librpc/crypto/gse.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/source3/librpc/crypto/gse.c b/source3/librpc/crypto/gse.c
index e67065a5f49..3ccbb0e18a0 100644
--- a/source3/librpc/crypto/gse.c
+++ b/source3/librpc/crypto/gse.c
@@ -341,8 +341,13 @@ static NTSTATUS gse_get_client_auth_token(TALLOC_CTX *mem_ctx,
status = NT_STATUS_MORE_PROCESSING_REQUIRED;
break;
default:
- DEBUG(0, ("gss_init_sec_context failed with [%s]\n",
- gse_errstr(talloc_tos(), gss_maj, gss_min)));
+ if ((gss_maj == GSS_S_FAILURE) &&
+ (gss_min == KRB5KRB_AP_ERR_TKT_EXPIRED)) {
+ DBG_NOTICE("Ticket expired\n");
+ } else {
+ DBG_ERR("gss_init_sec_context failed with [%s]\n",
+ gse_errstr(talloc_tos(), gss_maj, gss_min));
+ }
status = NT_STATUS_INTERNAL_ERROR;
goto done;
}