From: Michael Adam Date: Thu, 10 Jun 2010 09:56:15 +0000 (+0200) Subject: s3:pdb_ldap: fix bug 7507 - init_sam_from_ldap stores group in sid2uid cache X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b206d75ca5ba04a866a22dfca5b7441fb49078d8;p=thirdparty%2Fsamba.git s3:pdb_ldap: fix bug 7507 - init_sam_from_ldap stores group in sid2uid cache (cherry picked from commit ba809ecb8ab217e4376bf75d2300e146b62b88eb) (cherry picked from commit cc740fb5eb56a0875703753d4a116d2fe33ec186) --- diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index f95f91284b3..249a990d257 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -1106,7 +1106,7 @@ static bool init_sam_from_ldap(struct ldapsam_privates *ldap_state, if (primary_gsid && sid_equal(primary_gsid, &mapped_gsid)) { store_gid_sid_cache(primary_gsid, sampass->unix_pw->pw_gid); - idmap_cache_set_sid2uid(primary_gsid, + idmap_cache_set_sid2gid(primary_gsid, sampass->unix_pw->pw_gid); } }