From 8c60644bd8f2d739ff7a58b3717929254d09dfbe Mon Sep 17 00:00:00 2001 From: Jan Zeleny Date: Mon, 21 Nov 2011 06:26:44 -0500 Subject: Add ldap_sasl_minssf option https://fedorahosted.org/sssd/ticket/1075 --- src/providers/ipa/ipa_common.c | 1 + src/providers/ipa/ipa_common.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src/providers/ipa') diff --git a/src/providers/ipa/ipa_common.c b/src/providers/ipa/ipa_common.c index 05299931c..de7c20d11 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 d415d4d01..1ab1983f3 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 -- cgit