diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2011-11-21 06:26:44 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-12-08 12:02:32 -0500 |
commit | 8c60644bd8f2d739ff7a58b3717929254d09dfbe (patch) | |
tree | 52a062e02fabcec7407c775e29112afffba0b467 /src/providers/ipa | |
parent | a63aee266c6d41216c606c2efa459f9477875cc7 (diff) | |
download | sssd-8c60644bd8f2d739ff7a58b3717929254d09dfbe.tar.gz sssd-8c60644bd8f2d739ff7a58b3717929254d09dfbe.tar.bz2 sssd-8c60644bd8f2d739ff7a58b3717929254d09dfbe.zip |
Add ldap_sasl_minssf option
https://fedorahosted.org/sssd/ticket/1075
Diffstat (limited to 'src/providers/ipa')
-rw-r--r-- | src/providers/ipa/ipa_common.c | 1 | ||||
-rw-r--r-- | src/providers/ipa/ipa_common.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_common.c b/src/providers/ipa/ipa_common.c index 05299931..de7c20d1 100644 --- a/src/providers/ipa/ipa_common.c +++ b/src/providers/ipa/ipa_common.c @@ -75,6 +75,7 @@ struct dp_option ipa_def_ldap_opts[] = { { "ldap_sasl_mech", DP_OPT_STRING, { "GSSAPI" } , NULL_STRING }, { "ldap_sasl_authid", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "ldap_sasl_realm", DP_OPT_STRING, NULL_STRING, NULL_STRING }, + { "ldap_sasl_minssf", DP_OPT_NUMBER, { .number = 56 }, NULL_NUMBER }, { "ldap_krb5_keytab", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "ldap_krb5_init_creds", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE }, /* use the same parm name as the krb5 module so we set it only once */ diff --git a/src/providers/ipa/ipa_common.h b/src/providers/ipa/ipa_common.h index d415d4d0..1ab1983f 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 53 +#define IPA_OPTS_BASIC_TEST 54 /* 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 |