From: Christof Schmitt Date: Mon, 30 Jul 2012 18:03:54 +0000 (-0700) Subject: auth/kerberos: Adjust log level for failed PAC signature verification X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=05befd2f734d3962619ebc0cc137bbe5cedfd81d;p=obnox%2Fsamba%2Fsamba-obnox.git auth/kerberos: Adjust log level for failed PAC signature verification With winbindd trying to verify the signature of an application provided PAC, this message can be easily triggered. Adjust the debug level to avoid filling up the logs. Signed-off-by: Andrew Bartlett --- diff --git a/auth/kerberos/kerberos_pac.c b/auth/kerberos/kerberos_pac.c index 80f31d869f1..81f7f21381b 100644 --- a/auth/kerberos/kerberos_pac.c +++ b/auth/kerberos/kerberos_pac.c @@ -322,7 +322,7 @@ NTSTATUS kerberos_decode_pac(TALLOC_CTX *mem_ctx, context, service_keyblock); if (ret) { - DEBUG(1, ("PAC Decode: Failed to verify the service " + DEBUG(5, ("PAC Decode: Failed to verify the service " "signature: %s\n", error_message(ret))); return NT_STATUS_ACCESS_DENIED; }