summaryrefslogtreecommitdiffstats
path: root/src/providers/ipa/ipa_init.c
diff options
context:
space:
mode:
authorJan Zeleny <jzeleny@redhat.com>2011-10-12 09:30:53 -0400
committerStephen Gallagher <sgallagh@redhat.com>2011-11-23 14:19:53 -0500
commit8b1f2574ce7a964965a18ab047ab09c4694380c4 (patch)
treeb9fe7bd67c27833a259ba42fcf8de55f08fedabf /src/providers/ipa/ipa_init.c
parente526b608657f229f7486b3aa8c53b0f2c53b42b1 (diff)
downloadsssd-8b1f2574ce7a964965a18ab047ab09c4694380c4.tar.gz
sssd-8b1f2574ce7a964965a18ab047ab09c4694380c4.tar.xz
sssd-8b1f2574ce7a964965a18ab047ab09c4694380c4.zip
Added IPA account info handler
Currently it is only handling netgroups by itself, other requests are forwarded to LDAP provider.
Diffstat (limited to 'src/providers/ipa/ipa_init.c')
-rw-r--r--src/providers/ipa/ipa_init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_init.c b/src/providers/ipa/ipa_init.c
index eaf2115af..8b553ef06 100644
--- a/src/providers/ipa/ipa_init.c
+++ b/src/providers/ipa/ipa_init.c
@@ -30,6 +30,7 @@
#include "providers/child_common.h"
#include "providers/ipa/ipa_common.h"
#include "providers/krb5/krb5_auth.h"
+#include "providers/ipa/ipa_id.h"
#include "providers/ipa/ipa_auth.h"
#include "providers/ipa/ipa_access.h"
#include "providers/ipa/ipa_dyndns.h"
@@ -38,7 +39,7 @@ struct ipa_options *ipa_options = NULL;
/* Id Handler */
struct bet_ops ipa_id_ops = {
- .handler = sdap_account_info_handler,
+ .handler = ipa_account_info_handler,
.finalize = NULL,
.check_online = sdap_check_online
};