diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2012-02-01 05:26:23 -0500 |
---|---|---|
committer | Jan Zeleny <jzeleny@redhat.com> | 2012-02-01 11:36:52 +0100 |
commit | 3989d650bec60c66c02bc72f7313acdc876aae58 (patch) | |
tree | aad24309374a4c888b35b2f960107043eee3d393 /src/providers | |
parent | ab68008f87504ace9451c14ba2a7e8dfec435779 (diff) | |
download | sssd-3989d650bec60c66c02bc72f7313acdc876aae58.tar.gz sssd-3989d650bec60c66c02bc72f7313acdc876aae58.tar.xz sssd-3989d650bec60c66c02bc72f7313acdc876aae58.zip |
Fixed wrong position of ldap_service_search_base
The wrong position in configuration directive array caused problems in
IPA provider, which tried to fetch another value instead of the services
lookup base.
Diffstat (limited to 'src/providers')
-rw-r--r-- | src/providers/ipa/ipa_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_common.c b/src/providers/ipa/ipa_common.c index 07e87bbba..ba22830e1 100644 --- a/src/providers/ipa/ipa_common.c +++ b/src/providers/ipa/ipa_common.c @@ -61,10 +61,10 @@ struct dp_option ipa_def_ldap_opts[] = { { "ldap_group_search_base", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "ldap_group_search_scope", DP_OPT_STRING, { "sub" }, NULL_STRING }, { "ldap_group_search_filter", DP_OPT_STRING, NULL_STRING, NULL_STRING }, + { "ldap_service_search_base", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "ldap_sudo_search_base", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "ldap_sudo_refresh_enabled", DP_OPT_BOOL, BOOL_FALSE, BOOL_FALSE }, { "ldap_sudo_refresh_timeout", DP_OPT_NUMBER, { .number = 300 }, NULL_NUMBER }, - { "ldap_service_search_base", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "ldap_schema", DP_OPT_STRING, { "ipa_v1" }, NULL_STRING }, { "ldap_offline_timeout", DP_OPT_NUMBER, { .number = 60 }, NULL_NUMBER }, { "ldap_force_upper_case_realm", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE }, |