diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-07-30 04:03:40 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-07-30 04:03:40 +0000 |
commit | 082c0324cde38fadd70934a10849c7d40a34e3b1 (patch) | |
tree | 3fdfe2851861f192516abbf75cbae0134e0ccf52 | |
parent | be3470adeea01a2d0fa2f068159d2cea39b552da (diff) | |
download | samba-082c0324cde38fadd70934a10849c7d40a34e3b1.tar.gz samba-082c0324cde38fadd70934a10849c7d40a34e3b1.tar.xz samba-082c0324cde38fadd70934a10849c7d40a34e3b1.zip |
These are not critical errors, they should not be a level 0.
Andrew Bartlett
-rw-r--r-- | source/passdb/pdb_ldap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c index 581aa48b997..8575d8b30f0 100644 --- a/source/passdb/pdb_ldap.c +++ b/source/passdb/pdb_ldap.c @@ -1281,7 +1281,7 @@ static BOOL ldapsam_getsampwnam(struct pdb_methods *my_methods, SAM_ACCOUNT * us if (entry) { if (!init_sam_from_ldap(ldap_state, user, ldap_struct, entry)) { - DEBUG(0,("ldapsam_getsampwnam: init_sam_from_ldap failed!\n")); + DEBUG(1,("ldapsam_getsampwnam: init_sam_from_ldap failed!\n")); ldap_msgfree(result); ldap_unbind(ldap_struct); return False; @@ -1325,7 +1325,7 @@ static BOOL ldapsam_getsampwrid(struct pdb_methods *my_methods, SAM_ACCOUNT * us if (ldap_count_entries(ldap_struct, result) < 1) { - DEBUG(0, + DEBUG(4, ("We don't find this rid [%i] count=%d\n", rid, ldap_count_entries(ldap_struct, result))); ldap_unbind(ldap_struct); @@ -1336,7 +1336,7 @@ static BOOL ldapsam_getsampwrid(struct pdb_methods *my_methods, SAM_ACCOUNT * us if (entry) { if (!init_sam_from_ldap(ldap_state, user, ldap_struct, entry)) { - DEBUG(0,("ldapsam_getsampwrid: init_sam_from_ldap failed!\n")); + DEBUG(1,("ldapsam_getsampwrid: init_sam_from_ldap failed!\n")); ldap_msgfree(result); ldap_unbind(ldap_struct); return False; |