In passdb/pdb_ldap.c, functions ldapsam_enum_aliasmem and ldapsam_modify_aliasmem, the group type, corresponding with "sambaGroupType" is choosen as follows: if (sid_check_is_in_builtin(alias)) { type = SID_NAME_ALIAS; } if (sid_check_is_in_our_domain(alias)) { type = SID_NAME_ALIAS; } Shouldn't the second one read if (sid_check_is_in_our_domain(alias)) type = SID_NAME_DOM_GRP; ? regards, Zrin
that's the local sam, there is no error here.