1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-25 06:04:04 +03:00

s3:librpc/gse: don't log gss_acquire_creds failed at level 0

Some callers just retry after a kinit.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Günther Deschner <gd@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Stefan Metzmacher 2016-03-02 07:42:41 +01:00
parent e4aebd7e28
commit 79bf883534

View File

@ -258,7 +258,8 @@ static NTSTATUS gse_init_client(TALLOC_CTX *mem_ctx,
&gse_ctx->creds,
NULL, NULL);
if (gss_maj) {
DEBUG(0, ("gss_acquire_creds failed for GSS_C_NO_NAME with [%s]\n",
DEBUG(5, ("gss_acquire_creds failed for GSS_C_NO_NAME with [%s] -"
"the caller may retry after a kinit.\n",
gse_errstr(gse_ctx, gss_maj, gss_min)));
status = NT_STATUS_INTERNAL_ERROR;
goto err_out;