diff options
author | Gerald Carter <jerry@samba.org> | 2004-01-06 18:26:18 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2004-01-06 18:26:18 +0000 |
commit | 29b4959815d9cb5ad0d300a4eb41c4d06f9653dc (patch) | |
tree | da7f2e39dbcbeb183f91665e039bde60183e9b3c /source3/sam | |
parent | 67da3026a4d4681a904db09a6b713cbad047e7c7 (diff) | |
download | samba-29b4959815d9cb5ad0d300a4eb41c4d06f9653dc.tar.gz samba-29b4959815d9cb5ad0d300a4eb41c4d06f9653dc.tar.bz2 samba-29b4959815d9cb5ad0d300a4eb41c4d06f9653dc.zip |
isolate ldap debug messages to the common smbldap_XXX() functions
(This used to be commit 7d7a262f45182e67daecdca49df85445c2b9700a)
Diffstat (limited to 'source3/sam')
-rw-r--r-- | source3/sam/idmap_ldap.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/source3/sam/idmap_ldap.c b/source3/sam/idmap_ldap.c index db1bb74de5..a2afd7d424 100644 --- a/source3/sam/idmap_ldap.c +++ b/source3/sam/idmap_ldap.c @@ -507,9 +507,6 @@ static NTSTATUS ldap_get_sid_from_id(DOM_SID *sid, unid_t id, int id_type) LDAP_OBJ_IDMAP_ENTRY, type, ((id_type & ID_USERID) ? (unsigned long)id.uid : (unsigned long)id.gid)); - - DEBUG(5,("ldap_get_sid_from_id: Searching \"%s\"\n", filter )); - attr_list = get_attr_list( sidmap_attr_list ); rc = smbldap_search(ldap_state.smbldap_state, suffix, LDAP_SCOPE_SUBTREE, filter, attr_list, 0, &result); @@ -580,8 +577,6 @@ static NTSTATUS ldap_get_id_from_sid(unid_t *id, int *id_type, const DOM_SID *si else type = get_attr_key2string( sidmap_attr_list, LDAP_ATTR_UIDNUMBER ); - DEBUG(10,("ldap_get_id_from_sid: Searching for \"%s\"\n", filter)); - /* do the search and check for errors */ attr_list = get_attr_list( sidmap_attr_list ); |