diff options
author | Simo Sorce <ssorce@redhat.com> | 2009-11-07 18:58:17 -0500 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-11-07 18:58:17 -0500 |
commit | c72c21ca2de8ebf535836ecbad80d0f68a26a8e0 (patch) | |
tree | 9a5f0f3d5dd9ca6dcd29a0d67f2cb3fd11669ea9 /server | |
parent | 6922197ba66b8d8806d95179312821901f7de085 (diff) | |
download | sssd-c72c21ca2de8ebf535836ecbad80d0f68a26a8e0.tar.gz sssd-c72c21ca2de8ebf535836ecbad80d0f68a26a8e0.tar.bz2 sssd-c72c21ca2de8ebf535836ecbad80d0f68a26a8e0.zip |
Fix build
Diffstat (limited to 'server')
-rw-r--r-- | server/providers/ipa/ipa_access.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/server/providers/ipa/ipa_access.c b/server/providers/ipa/ipa_access.c index 8f6d70b8..0adad546 100644 --- a/server/providers/ipa/ipa_access.c +++ b/server/providers/ipa/ipa_access.c @@ -402,7 +402,8 @@ static struct tevent_req *hbac_get_host_info_send(TALLOC_CTX *memctx, state->host_search_base, LDAP_SCOPE_SUB, state->host_filter, - state->host_attrs); + state->host_attrs, + NULL, 0); if (subreq == NULL) { DEBUG(1, ("sdap_get_generic_send failed.\n")); @@ -442,7 +443,8 @@ static void hbac_get_host_info_connect_done(struct tevent_req *subreq) state->host_search_base, LDAP_SCOPE_SUB, state->host_filter, - state->host_attrs); + state->host_attrs, + NULL, 0); if (subreq == NULL) { DEBUG(1, ("sdap_get_generic_send failed.\n")); @@ -865,7 +867,8 @@ static struct tevent_req *hbac_get_rules_send(TALLOC_CTX *memctx, state->hbac_search_base, LDAP_SCOPE_SUB, state->hbac_filter, - state->hbac_attrs); + state->hbac_attrs, + NULL, 0); if (subreq == NULL) { DEBUG(1, ("sdap_get_generic_send failed.\n")); @@ -905,7 +908,8 @@ static void hbac_get_rules_connect_done(struct tevent_req *subreq) state->hbac_search_base, LDAP_SCOPE_SUB, state->hbac_filter, - state->hbac_attrs); + state->hbac_attrs, + NULL, 0); if (subreq == NULL) { DEBUG(1, ("sdap_get_generic_send failed.\n")); |