diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2016-04-08 16:29:42 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2016-07-06 17:32:59 +0200 |
commit | 99990d4e4d929db39a1fc1d0d65406b677095dba (patch) | |
tree | 77b288a9434f8655065273c1a7931390fc1e94cc /src/providers/ldap/sdap_async_groups.c | |
parent | 98c6a6ae4c260fc8156d26876c072ca189dd21dd (diff) | |
download | sssd-99990d4e4d929db39a1fc1d0d65406b677095dba.tar.gz sssd-99990d4e4d929db39a1fc1d0d65406b677095dba.tar.xz sssd-99990d4e4d929db39a1fc1d0d65406b677095dba.zip |
SYSDB: Add a utility function to return a list of qualified names
Adds a utility function the LDAP provider can use. This is different
from sss_create_internal_fqname_list in the sense that the LDAP provider
passes in the attribute name that contains the name attribute value.
Diffstat (limited to 'src/providers/ldap/sdap_async_groups.c')
-rw-r--r-- | src/providers/ldap/sdap_async_groups.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async_groups.c b/src/providers/ldap/sdap_async_groups.c index 5edcd3af7..a4b917726 100644 --- a/src/providers/ldap/sdap_async_groups.c +++ b/src/providers/ldap/sdap_async_groups.c @@ -2020,7 +2020,7 @@ static void sdap_get_groups_process(struct tevent_req *subreq) } if (state->no_members) { - ret = sysdb_attrs_primary_name_list(state->sysdb, state, + ret = sysdb_attrs_primary_name_list(state->dom, state, state->groups, state->count, state->opts->group_map[SDAP_AT_GROUP_NAME].name, &groupnamelist); |