Author: jmcd
Date: 2005-03-21 21:09:21 +0000 (Mon, 21 Mar 2005)
New Revision: 5927

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

Log:
Fix ldapsam trusted enum_group_members.  We were searching in the user 
suffix instead of the group suffix.

Thanks to John Janosik ([EMAIL PROTECTED]).

Modified:
   branches/SAMBA_3_0/source/passdb/pdb_ldap.c


Changeset:
Modified: branches/SAMBA_3_0/source/passdb/pdb_ldap.c
===================================================================
--- branches/SAMBA_3_0/source/passdb/pdb_ldap.c 2005-03-21 19:07:40 UTC (rev 
5926)
+++ branches/SAMBA_3_0/source/passdb/pdb_ldap.c 2005-03-21 21:09:21 UTC (rev 
5927)
@@ -2288,7 +2288,7 @@
 
        {
                const char *attrs[] = { "memberUid", NULL };
-               rc = smbldap_search(conn, lp_ldap_user_suffix(),
+               rc = smbldap_search(conn, lp_ldap_group_suffix(),
                                    LDAP_SCOPE_SUBTREE, filter, attrs, 0,
                                    &msg);
        }

Reply via email to