diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2011-08-23 23:19:57 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-08-26 16:52:52 -0400 |
commit | a2e6bd6ed16c92799d435043450f6156a773a6dc (patch) | |
tree | a0234fa507a72afc720848788c625d6437a63671 /src/providers/ipa | |
parent | 47db32cd9cb2147bb40909352569d7c8274365db (diff) | |
download | sssd-a2e6bd6ed16c92799d435043450f6156a773a6dc.tar.gz sssd-a2e6bd6ed16c92799d435043450f6156a773a6dc.tar.bz2 sssd-a2e6bd6ed16c92799d435043450f6156a773a6dc.zip |
Add LDAP provider option to set LDAP_OPT_X_SASL_NOCANON
https://fedorahosted.org/sssd/ticket/978
Diffstat (limited to 'src/providers/ipa')
-rw-r--r-- | src/providers/ipa/ipa_common.c | 3 | ||||
-rw-r--r-- | src/providers/ipa/ipa_common.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/providers/ipa/ipa_common.c b/src/providers/ipa/ipa_common.c index 7e548009..c6229456 100644 --- a/src/providers/ipa/ipa_common.c +++ b/src/providers/ipa/ipa_common.c @@ -97,7 +97,8 @@ struct dp_option ipa_def_ldap_opts[] = { */ { "ldap_auth_disable_tls_never_use_in_production", DP_OPT_BOOL, BOOL_FALSE, BOOL_FALSE }, { "ldap_page_size", DP_OPT_NUMBER, { .number = 1000 }, NULL_NUMBER }, - { "ldap_deref_threshold", DP_OPT_NUMBER, { .number = 10 }, NULL_NUMBER } + { "ldap_deref_threshold", DP_OPT_NUMBER, { .number = 10 }, NULL_NUMBER }, + { "ldap_sasl_canonicalize", DP_OPT_BOOL, BOOL_FALSE, BOOL_FALSE } }; struct sdap_attr_map ipa_attr_map[] = { diff --git a/src/providers/ipa/ipa_common.h b/src/providers/ipa/ipa_common.h index 76336f3d..57591150 100644 --- a/src/providers/ipa/ipa_common.h +++ b/src/providers/ipa/ipa_common.h @@ -35,7 +35,7 @@ struct ipa_service { /* the following defines are used to keep track of the options in the ldap * module, so that if they change and ipa is not updated correspondingly * this will trigger a runtime abort error */ -#define IPA_OPTS_BASIC_TEST 51 +#define IPA_OPTS_BASIC_TEST 52 /* the following define is used to keep track of the options in the krb5 * module, so that if they change and ipa is not updated correspondingly |