[SCM] Samba Shared Repository - branch v4-0-test updated - release-4-0-0alpha5-63-g5bde586

Andrew Bartlett abartlet at samba.org
Tue Jul 15 09:32:00 GMT 2008


The branch, v4-0-test has been updated
       via  5bde586bdb4a1523a62a764b9ff292a4a8cee4fe (commit)
      from  78416f4840df4f8d1f9cc5e46a48b19c86888050 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v4-0-test


- Log -----------------------------------------------------------------
commit 5bde586bdb4a1523a62a764b9ff292a4a8cee4fe
Author: Andrew Bartlett <abartlet at samba.org>
Date:   Tue Jul 15 19:31:37 2008 +1000

    Kill of some bogus debugs for the world who does not use the LDAP backend

-----------------------------------------------------------------------

Summary of changes:
 source/auth/credentials/credentials_files.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/auth/credentials/credentials_files.c b/source/auth/credentials/credentials_files.c
index bba3fdc..6c3bb25 100644
--- a/source/auth/credentials/credentials_files.c
+++ b/source/auth/credentials/credentials_files.c
@@ -233,14 +233,14 @@ _PUBLIC_ NTSTATUS cli_credentials_set_secrets(struct cli_credentials *cred,
 			       &msgs, attrs,
 			       "%s", filter);
 	if (ldb_ret == 0) {
-		DEBUG(1, ("Could not find entry to match filter: '%s' base: '%s'\n",
+		DEBUG(5, ("(normal if no LDAP backend required) Could not find entry to match filter: '%s' base: '%s'\n",
 			  filter, base));
 		/* set anonymous as the fallback, if the machine account won't work */
 		cli_credentials_set_anonymous(cred);
 		talloc_free(mem_ctx);
 		return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
 	} else if (ldb_ret != 1) {
-		DEBUG(1, ("Found more than one (%d) entry to match filter: '%s' base: '%s'\n",
+		DEBUG(5, ("Found more than one (%d) entry to match filter: '%s' base: '%s'\n",
 			  ldb_ret, filter, base));
 		/* set anonymous as the fallback, if the machine account won't work */
 		cli_credentials_set_anonymous(cred);
@@ -259,7 +259,7 @@ _PUBLIC_ NTSTATUS cli_credentials_set_secrets(struct cli_credentials *cred,
 		if (!machine_account) {
 			const char *ldap_bind_dn = ldb_msg_find_attr_as_string(msgs[0], "ldapBindDn", NULL);
 			if (!ldap_bind_dn) {
-				DEBUG(5, ("(normal if no LDAP backend required) Could not find 'samAccountName', 'servicePrincipalName' or 'ldapBindDn' in secrets record: filter: '%s' base: '%s'\n",
+				DEBUG(1, ("Could not find 'samAccountName', 'servicePrincipalName' or 'ldapBindDn' in secrets record: filter: '%s' base: '%s'\n",
 					  filter, base));
 				/* set anonymous as the fallback, if the machine account won't work */
 				cli_credentials_set_anonymous(cred);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list