summaryrefslogtreecommitdiffstats
path: root/src/providers/data_provider_be.c
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-04-15 14:21:54 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-04-16 15:15:41 -0400
commit51f72b7bb911a93859739905ba54de939c99dfb9 (patch)
tree0f774ae9ed5380962e1fdb3ed5544b9165897488 /src/providers/data_provider_be.c
parente5f2cd88633a152b7b8133265ffdb217cdc3b8d7 (diff)
downloadsssd-51f72b7bb911a93859739905ba54de939c99dfb9.tar.gz
sssd-51f72b7bb911a93859739905ba54de939c99dfb9.tar.xz
sssd-51f72b7bb911a93859739905ba54de939c99dfb9.zip
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.
Diffstat (limited to 'src/providers/data_provider_be.c')
-rw-r--r--src/providers/data_provider_be.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/data_provider_be.c b/src/providers/data_provider_be.c
index 15f6882cd..22f180248 100644
--- a/src/providers/data_provider_be.c
+++ b/src/providers/data_provider_be.c
@@ -95,7 +95,7 @@ struct sbus_interface be_interface = {
static struct bet_data bet_data[] = {
{BET_NULL, NULL, NULL},
- {BET_ID, CONFDB_DOMAIN_ID_PROVIDER, "sssm_%s_init"},
+ {BET_ID, CONFDB_DOMAIN_ID_PROVIDER, "sssm_%s_id_init"},
{BET_AUTH, CONFDB_DOMAIN_AUTH_PROVIDER, "sssm_%s_auth_init"},
{BET_ACCESS, CONFDB_DOMAIN_ACCESS_PROVIDER, "sssm_%s_access_init"},
{BET_CHPASS, CONFDB_DOMAIN_CHPASS_PROVIDER, "sssm_%s_chpass_init"},