From 264be69c7615a1f65a21805b95a9dbd2736d1fb4 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 15 Apr 2010 14:21:54 -0400 Subject: Make ID provider init functions clearer Using sssm_*_init() as the name of the initialization function for identity providers was a holdover from earlier development when we thought we would only have a single "provider" entry in the config file. As we have now separated out the initialization functions for auth, chpass and access, we should rename sssm_*_init() to sssm_*_id_init() for a cleaner interface. --- src/providers/ldap/ldap_init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/providers/ldap/ldap_init.c') diff --git a/src/providers/ldap/ldap_init.c b/src/providers/ldap/ldap_init.c index b1f053fb..b74ffc21 100644 --- a/src/providers/ldap/ldap_init.c +++ b/src/providers/ldap/ldap_init.c @@ -46,9 +46,9 @@ struct bet_ops sdap_chpass_ops = { .finalize = sdap_shutdown }; -int sssm_ldap_init(struct be_ctx *bectx, - struct bet_ops **ops, - void **pvt_data) +int sssm_ldap_id_init(struct be_ctx *bectx, + struct bet_ops **ops, + void **pvt_data) { struct sdap_id_ctx *ctx; const char *urls; -- cgit