diff options
author | Simo Sorce <simo@redhat.com> | 2013-01-11 18:13:36 -0500 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-01-21 22:17:34 +0100 |
commit | cbaba2f47da96c4191971bce86f03afb3f88864a (patch) | |
tree | a599a9c3680e4476d975ea42ca163716f1ee327b /src/providers/ldap/ldap_id.c | |
parent | 03abdaa21ecf562b714f204ca42379ff08626f75 (diff) | |
download | sssd-cbaba2f47da96c4191971bce86f03afb3f88864a.tar.gz sssd-cbaba2f47da96c4191971bce86f03afb3f88864a.tar.xz sssd-cbaba2f47da96c4191971bce86f03afb3f88864a.zip |
Add be_req_get_data() helper funciton.
In preparation for making struct be_req opaque.
Diffstat (limited to 'src/providers/ldap/ldap_id.c')
-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 efa1769b..d24b8aa6 100644 --- a/src/providers/ldap/ldap_id.c +++ b/src/providers/ldap/ldap_id.c @@ -937,7 +937,7 @@ void sdap_handle_account_info(struct be_req *breq, struct sdap_id_ctx *ctx) return sdap_handler_done(breq, DP_ERR_OFFLINE, EAGAIN, "Offline"); } - ar = talloc_get_type(breq->req_data, struct be_acct_req); + ar = talloc_get_type(be_req_get_data(breq), struct be_acct_req); switch (ar->entry_type & BE_REQ_TYPE_MASK) { case BE_REQ_USER: /* user */ |