diff options
author | Sumit Bose <sbose@redhat.com> | 2009-07-10 11:34:49 +0200 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-07-10 09:51:39 -0400 |
commit | 4163ae72c7951336a6fa9c459b3e083ff022e5ae (patch) | |
tree | 01483a0f6d034a8b724d1f166f777d4cbe0525bd /server/providers/ldap | |
parent | 923bc6d7922c4374bbb70ff34fa922fe595ec40b (diff) | |
download | sssd-4163ae72c7951336a6fa9c459b3e083ff022e5ae.tar.gz sssd-4163ae72c7951336a6fa9c459b3e083ff022e5ae.tar.bz2 sssd-4163ae72c7951336a6fa9c459b3e083ff022e5ae.zip |
fixed the default value for tls_reqcert
Diffstat (limited to 'server/providers/ldap')
-rw-r--r-- | server/providers/ldap/sdap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/providers/ldap/sdap.c b/server/providers/ldap/sdap.c index ddba0ba5..9c957ff2 100644 --- a/server/providers/ldap/sdap.c +++ b/server/providers/ldap/sdap.c @@ -32,7 +32,7 @@ struct sdap_gen_opts default_basic_opts[] = { { "defaultAuthtok", NULL, NULL }, { "network_timeout", "5", NULL }, { "opt_timeout", "5", NULL }, - { "tls_reqcert", "always", NULL }, + { "tls_reqcert", "hard", NULL }, { "userSearchBase", "dc=example,dc=com", NULL }, { "userSearchScope", "sub", NULL }, { "userSearchFilter", NULL, NULL }, |