summaryrefslogtreecommitdiffstats
path: root/src/providers/ipa/ipa_auth.c
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2010-09-09 15:15:36 +0200
committerStephen Gallagher <sgallagh@redhat.com>2010-09-15 11:46:33 -0400
commit71af2725e8f96b403af3f4aa140c413f751380c0 (patch)
treea2e2211a59445872e69a79974a142d5f6ccc95de /src/providers/ipa/ipa_auth.c
parent6057958313bde8dc0f43dc97d2ba3e0897722382 (diff)
downloadsssd-71af2725e8f96b403af3f4aa140c413f751380c0.tar.gz
sssd-71af2725e8f96b403af3f4aa140c413f751380c0.tar.xz
sssd-71af2725e8f96b403af3f4aa140c413f751380c0.zip
Store rootdse supported features in sdap_handler
Diffstat (limited to 'src/providers/ipa/ipa_auth.c')
-rw-r--r--src/providers/ipa/ipa_auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/ipa/ipa_auth.c b/src/providers/ipa/ipa_auth.c
index 2d91457db..23095e53b 100644
--- a/src/providers/ipa/ipa_auth.c
+++ b/src/providers/ipa/ipa_auth.c
@@ -92,7 +92,7 @@ static struct tevent_req *get_password_migration_flag_send(TALLOC_CTX *memctx,
subreq = sdap_cli_connect_send(state, ev, sdap_auth_ctx->opts,
sdap_auth_ctx->be, sdap_auth_ctx->service,
- NULL);
+ true);
if (subreq == NULL) {
DEBUG(1, ("sdap_cli_connect_send failed.\n"));
goto fail;
@@ -118,7 +118,7 @@ static void get_password_migration_flag_auth_done(struct tevent_req *subreq)
char *search_base;
const char **attrs;
- ret = sdap_cli_connect_recv(subreq, state, &state->sh, NULL);
+ ret = sdap_cli_connect_recv(subreq, state, &state->sh);
talloc_zfree(subreq);
if (ret) {
DEBUG(1, ("sdap_auth request failed.\n"));