diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2010-10-15 15:09:58 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-10-18 13:12:04 -0400 |
commit | 8059574092a96396dea64dae13696a7f95b423b1 (patch) | |
tree | c69fc5f4647e423446de5b0fa0196e5e3b236145 /src/providers | |
parent | 55769ee01eac9ce8ce55b29222f14e1c4362fc3c (diff) | |
download | sssd-8059574092a96396dea64dae13696a7f95b423b1.tar.gz sssd-8059574092a96396dea64dae13696a7f95b423b1.tar.bz2 sssd-8059574092a96396dea64dae13696a7f95b423b1.zip |
Modify sysdb_[add|remove]_group_member to accept users and groups
Previously, it assumed that all members were users. This changes
the interface so that either a user or a group can be specified.
Also, it eliminates the need for a memory context to be passed,
since the internal memory should be self-contained.
Diffstat (limited to 'src/providers')
-rw-r--r-- | src/providers/ldap/sdap_async_accounts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/providers/ldap/sdap_async_accounts.c b/src/providers/ldap/sdap_async_accounts.c index 3ee8a4ea..7b2b3e00 100644 --- a/src/providers/ldap/sdap_async_accounts.c +++ b/src/providers/ldap/sdap_async_accounts.c @@ -2023,6 +2023,7 @@ static void sdap_initgr_rfc2307_process(struct tevent_req *subreq) } ret = sysdb_update_members(state->sysdb, state->dom, state->name, + SYSDB_MEMBER_USER, (const char **)add_groups, (const char **)del_groups); if (ret != EOK) { |