summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/ldap_id.c
diff options
context:
space:
mode:
authorJan Zeleny <jzeleny@redhat.com>2011-10-12 09:14:57 -0400
committerStephen Gallagher <sgallagh@redhat.com>2011-11-23 14:19:53 -0500
commit7d9f54f5ec7c72336c4f69dbf20d55f1f64b88d2 (patch)
treecd143ed207c35e2c40070d45cd26397dc82b08ca /src/providers/ldap/ldap_id.c
parente369fc08906383e6d5c39832f31bb6600a33f887 (diff)
downloadsssd-7d9f54f5ec7c72336c4f69dbf20d55f1f64b88d2.tar.gz
sssd-7d9f54f5ec7c72336c4f69dbf20d55f1f64b88d2.tar.xz
sssd-7d9f54f5ec7c72336c4f69dbf20d55f1f64b88d2.zip
Renamed some LDAP routines
These were renamed just ot make sure they are not mistook for IPA netgroup functions.
Diffstat (limited to 'src/providers/ldap/ldap_id.c')
-rw-r--r--src/providers/ldap/ldap_id.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/ldap/ldap_id.c b/src/providers/ldap/ldap_id.c
index d30018488..b8e9563bd 100644
--- a/src/providers/ldap/ldap_id.c
+++ b/src/providers/ldap/ldap_id.c
@@ -815,7 +815,7 @@ void sdap_account_info_handler(struct be_req *breq)
break;
}
- req = netgroup_get_send(breq, breq->be_ctx->ev, ctx, ar->filter_value);
+ req = ldap_netgroup_get_send(breq, breq->be_ctx->ev, ctx, ar->filter_value);
if (!req) {
return sdap_handler_done(breq, DP_ERR_FATAL, ENOMEM, "Out of memory");
}
@@ -893,7 +893,7 @@ static void sdap_account_info_netgroups_done(struct tevent_req *req)
struct be_req *breq = tevent_req_callback_data(req, struct be_req);
int ret, dp_error;
- ret = netgroup_get_recv(req, &dp_error);
+ ret = ldap_netgroup_get_recv(req, &dp_error);
talloc_zfree(req);
sdap_account_info_complete(breq, dp_error, ret, "Netgroup lookup failed");