From e3971524d2030075165a150daf0e3aa91414d567 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Sat, 22 Jan 2005 04:09:21 +0000 Subject: r4926: Use LDAP_SCOPE_ONELEVEL instead of OpenLDAP's LDAP_SCOPE_ONE-scope. Guenther (This used to be commit eee0bd806b4fd4558f9c48c09f7e85274e2b807f) --- source3/passdb/pdb_ldap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index 2691965364..2994b06ef0 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -2921,7 +2921,7 @@ static NTSTATUS ldapsam_get_account_policy(struct pdb_methods *methods, int poli search: rc = smbldap_search(ldap_state->smbldap_state, base, - LDAP_SCOPE_ONE, filter, attrs, 0, &result); + LDAP_SCOPE_ONELEVEL, filter, attrs, 0, &result); if (rc != LDAP_SUCCESS) return ntstatus; @@ -3033,7 +3033,7 @@ static NTSTATUS ldapsam_set_account_policy(struct pdb_methods *methods, int poli get_global_sam_name(), lp_ldap_suffix()); rc = smbldap_search(ldap_state->smbldap_state, base, - LDAP_SCOPE_ONE, filter, attrs, 0, &result); + LDAP_SCOPE_ONELEVEL, filter, attrs, 0, &result); if (rc != LDAP_SUCCESS) return ntstatus; -- cgit