diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-08-02 17:53:52 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-08-08 00:52:02 +0200 |
commit | edcf38f274b5e9022d4d92d294a9267bec13b882 (patch) | |
tree | 3ae22d1e6ba182477c5b75fade77f15a91fc900b /src/providers/ldap | |
parent | efa8ca8cea5fb6153a42799544ab45fc96bc7ea5 (diff) | |
download | sssd-edcf38f274b5e9022d4d92d294a9267bec13b882.tar.gz sssd-edcf38f274b5e9022d4d92d294a9267bec13b882.tar.bz2 sssd-edcf38f274b5e9022d4d92d294a9267bec13b882.zip |
Enable removing nonexisting dn in sdap_handle_account_info
Change was introduced in commit ca344fde
Diffstat (limited to 'src/providers/ldap')
-rw-r--r-- | src/providers/ldap/ldap_id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/ldap_id.c b/src/providers/ldap/ldap_id.c index edf5106f..5fd05ebb 100644 --- a/src/providers/ldap/ldap_id.c +++ b/src/providers/ldap/ldap_id.c @@ -1351,7 +1351,7 @@ void sdap_handle_account_info(struct be_req *breq, struct sdap_id_ctx *ctx, } req = sdap_handle_acct_req_send(breq, breq, ar, ctx, - ctx->opts->sdom, conn, NULL); + ctx->opts->sdom, conn, true); if (req == NULL) { return sdap_handler_done(breq, DP_ERR_FATAL, ENOMEM, "Out of memory"); } |