diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2012-05-23 04:21:35 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-05-31 15:46:27 -0400 |
commit | 64ddff90c7fcc02ccb06824ac93af7d5f361a88f (patch) | |
tree | 70f12aa095d575826844f26278c2056ce8df0cf5 /src/providers/ldap/sdap_async_autofs.c | |
parent | 3111c28041b732b98a7fb39ef6232257d086d670 (diff) | |
download | sssd-64ddff90c7fcc02ccb06824ac93af7d5f361a88f.tar.gz sssd-64ddff90c7fcc02ccb06824ac93af7d5f361a88f.tar.bz2 sssd-64ddff90c7fcc02ccb06824ac93af7d5f361a88f.zip |
Add support for filtering atributes
This patch adds support for filtering attributes when constructing
attribute list from a map for LDAP query.
Diffstat (limited to 'src/providers/ldap/sdap_async_autofs.c')
-rw-r--r-- | src/providers/ldap/sdap_async_autofs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/providers/ldap/sdap_async_autofs.c b/src/providers/ldap/sdap_async_autofs.c index d8a2d0ee..9c8337d3 100644 --- a/src/providers/ldap/sdap_async_autofs.c +++ b/src/providers/ldap/sdap_async_autofs.c @@ -242,7 +242,8 @@ automntmaps_process_members_send(TALLOC_CTX *mem_ctx, } ret = build_attrs_from_map(state, opts->autofs_entry_map, - SDAP_OPTS_AUTOFS_ENTRY, &state->attrs, NULL); + SDAP_OPTS_AUTOFS_ENTRY, NULL, + &state->attrs, NULL); if (ret != EOK) { DEBUG(SSSDBG_CRIT_FAILURE, ("Failed to build attributes from map\n")); ret = ENOMEM; @@ -674,7 +675,8 @@ sdap_autofs_setautomntent_send(TALLOC_CTX *memctx, talloc_free(clean_mapname); ret = build_attrs_from_map(state, state->opts->autofs_mobject_map, - SDAP_OPTS_AUTOFS_MAP, &state->attrs, NULL); + SDAP_OPTS_AUTOFS_MAP, NULL, + &state->attrs, NULL); if (ret != EOK) { DEBUG(SSSDBG_CRIT_FAILURE, ("Failed to build attributes from map\n")); ret = ENOMEM; |