diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2011-08-01 15:22:53 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-08-01 12:18:17 -0400 |
commit | 83a7d6767035a09099c58838a42fd10516c92063 (patch) | |
tree | cee9a8628192253207808a5a3f91757d352bb13e /src | |
parent | 1e710acc5ce225c7e6aa33bc0dfe8af65f49d182 (diff) | |
download | sssd-83a7d6767035a09099c58838a42fd10516c92063.tar.gz sssd-83a7d6767035a09099c58838a42fd10516c92063.tar.xz sssd-83a7d6767035a09099c58838a42fd10516c92063.zip |
Request password control unconditionally during bind
https://fedorahosted.org/sssd/ticket/940
Diffstat (limited to 'src')
-rw-r--r-- | src/providers/ldap/sdap_async_connection.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/providers/ldap/sdap_async_connection.c b/src/providers/ldap/sdap_async_connection.c index 5d1fb3496..db39be19c 100644 --- a/src/providers/ldap/sdap_async_connection.c +++ b/src/providers/ldap/sdap_async_connection.c @@ -437,10 +437,10 @@ static struct tevent_req *simple_bind_send(TALLOC_CTX *memctx, state->user_dn = user_dn; state->pw = pw; - ret = sdap_control_create(state->sh, LDAP_CONTROL_PASSWORDPOLICYREQUEST, - 0, NULL, 0, &ctrls[0]); + ret = sss_ldap_control_create(LDAP_CONTROL_PASSWORDPOLICYREQUEST, + 0, NULL, 0, &ctrls[0]); if (ret != LDAP_SUCCESS && ret != LDAP_NOT_SUPPORTED) { - DEBUG(1, ("sdap_control_create failed to create " + DEBUG(1, ("sss_ldap_control_create failed to create " "Password Policy control.\n")); goto fail; } @@ -1639,10 +1639,10 @@ static int sdap_rebind_proc(LDAP *ldap, LDAP_CONST char *url, ber_tag_t request, sasl_mech = dp_opt_get_string(p->opts->basic, SDAP_SASL_MECH); if (sasl_mech == NULL) { - ret = sdap_control_create(p->sh, LDAP_CONTROL_PASSWORDPOLICYREQUEST, - 0, NULL, 0, &ctrls[0]); + ret = sss_ldap_control_create(LDAP_CONTROL_PASSWORDPOLICYREQUEST, + 0, NULL, 0, &ctrls[0]); if (ret != LDAP_SUCCESS && ret != LDAP_NOT_SUPPORTED) { - DEBUG(1, ("sdap_control_create failed to create " + DEBUG(1, ("sss_ldap_control_create failed to create " "Password Policy control.\n")); goto done; } |