A ref change was pushed to the OpenLDAP (openldap.git) repository. It will be available in the public mirror shortly.
The branch, master has been updated via fb49d486a35fd4b2e993398c1eea0c8f7bc6ac40 (commit) via eb087e0861f207858a4e08c72836a86f26d9701c (commit) via 8a259e3df16def3f05828f355e98a5089cd6e6d0 (commit) via 18afc2446d3e3901b4a0e98843cb24a95b56a4b3 (commit) from 5292fb3a3b5a6e62e7c625975c8c8141774a1e4c (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit fb49d486a35fd4b2e993398c1eea0c8f7bc6ac40 Author: Ondřej Kuzník okuznik@symas.com Date: Fri Jun 8 12:51:35 2018 +0100
ITS#8864 Fix ber_realloc after a partial ber_flush
commit eb087e0861f207858a4e08c72836a86f26d9701c Author: Quanah Gibson-Mount quanah@openldap.org Date: Thu Jun 14 16:12:59 2018 +0100
ITS#8573 TLS option test suite
commit 8a259e3df16def3f05828f355e98a5089cd6e6d0 Author: Ondřej Kuzník ondra@openldap.org Date: Thu Jun 14 16:14:15 2018 +0100
ITS#8573 allow all libldap options in tools -o option
commit 18afc2446d3e3901b4a0e98843cb24a95b56a4b3 Author: Ondřej Kuzník ondra@openldap.org Date: Thu Jun 14 16:08:36 2018 +0100
Fix quoting example
-----------------------------------------------------------------------
Summary of changes: clients/tools/common.c | 15 +- configure | 4 + configure.in | 4 + doc/devel/args | 2 +- doc/man/man1/ldapcompare.1 | 9 +- doc/man/man1/ldapdelete.1 | 9 +- doc/man/man1/ldapexop.1 | 9 +- doc/man/man1/ldapmodify.1 | 9 +- doc/man/man1/ldapmodrdn.1 | 9 +- doc/man/man1/ldappasswd.1 | 9 +- doc/man/man1/ldapsearch.1 | 9 +- doc/man/man1/ldapwhoami.1 | 13 +- doc/man/man5/ldap.conf.5 | 2 +- doc/man/man8/slapcat.8 | 2 +- include/ldap_pvt.h | 5 + libraries/liblber/io.c | 5 +- libraries/libldap/init.c | 231 ++++++++++++--------- servers/slapd/slapcommon.c | 5 +- .../{slapd-schema.conf => slapd-tls-sasl.conf} | 15 +- tests/data/{slapd-schema.conf => slapd-tls.conf} | 11 +- tests/data/tls/ca/certs/testsuiteCA.crt | 16 ++ tests/data/tls/ca/private/testsuiteCA.key | 16 ++ .../data/tls/certs/bjensen@mailgw.example.com.crt | 16 ++ tests/data/tls/certs/localhost.crt | 16 ++ tests/data/tls/conf/openssl.cnf | 129 ++++++++++++ tests/data/tls/create-crt.sh | 78 +++++++ .../tls/private/bjensen@mailgw.example.com.key | 16 ++ tests/data/tls/private/localhost.key | 16 ++ tests/run.in | 3 +- tests/scripts/defines.sh | 21 +- tests/scripts/test067-tls | 140 +++++++++++++ tests/scripts/test068-sasl-tls-external | 102 +++++++++ ...timaster => test069-delta-multimaster-starttls} | 25 ++- ...multimaster => test070-delta-multimaster-ldaps} | 68 +++--- 34 files changed, 858 insertions(+), 181 deletions(-) copy tests/data/{slapd-schema.conf => slapd-tls-sasl.conf} (74%) copy tests/data/{slapd-schema.conf => slapd-tls.conf} (82%) create mode 100644 tests/data/tls/ca/certs/testsuiteCA.crt create mode 100644 tests/data/tls/ca/private/testsuiteCA.key create mode 100644 tests/data/tls/certs/bjensen@mailgw.example.com.crt create mode 100644 tests/data/tls/certs/localhost.crt create mode 100644 tests/data/tls/conf/openssl.cnf create mode 100755 tests/data/tls/create-crt.sh create mode 100644 tests/data/tls/private/bjensen@mailgw.example.com.key create mode 100644 tests/data/tls/private/localhost.key create mode 100755 tests/scripts/test067-tls create mode 100755 tests/scripts/test068-sasl-tls-external copy tests/scripts/{test063-delta-multimaster => test069-delta-multimaster-starttls} (95%) copy tests/scripts/{test063-delta-multimaster => test070-delta-multimaster-ldaps} (81%)