svn commit: samba r9940 - in branches/SAMBA_4_0/source/lib: .

abartlet at samba.org abartlet at samba.org
Fri Sep 2 03:13:05 GMT 2005


Author: abartlet
Date: 2005-09-02 03:13:04 +0000 (Fri, 02 Sep 2005)
New Revision: 9940

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=9940

Log:
When guessing, don't make DEBUG(1,... errors.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/lib/credentials.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/credentials.c
===================================================================
--- branches/SAMBA_4_0/source/lib/credentials.c	2005-09-02 03:10:42 UTC (rev 9939)
+++ branches/SAMBA_4_0/source/lib/credentials.c	2005-09-02 03:13:04 UTC (rev 9940)
@@ -334,7 +334,7 @@
 	} else {
 		ret = krb5_cc_default(ccc->smb_krb5_context->krb5_context, &ccc->ccache);
 		if (ret) {
-			DEBUG(1,("failed to read default krb5 ccache: %s\n", 
+			DEBUG(3,("failed to read default krb5 ccache: %s\n", 
 				 smb_get_krb5_error_message(ccc->smb_krb5_context->krb5_context, ret, ccc)));
 			talloc_free(ccc);
 			return ret;
@@ -346,7 +346,7 @@
 	ret = krb5_cc_get_principal(ccc->smb_krb5_context->krb5_context, ccc->ccache, &princ);
 
 	if (ret) {
-		DEBUG(1,("failed to get principal from default ccache: %s\n", 
+		DEBUG(3,("failed to get principal from default ccache: %s\n", 
 			 smb_get_krb5_error_message(ccc->smb_krb5_context->krb5_context, ret, ccc)));
 		talloc_free(ccc);		
 		return ret;



More information about the samba-cvs mailing list