A ref change was pushed to the OpenLDAP (openldap.git) repository. It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_5 has been updated via 3c45b57c5c6053c833405be223cac61e6b31b67d (commit) via 9b326b098a4c903983c5cccf20f5047d42029c7d (commit) via e158d7db4bf5a585c649d05a0f6da8c048d610f5 (commit) via 13916cd3811fd5ebc7da6fcae019ae1e56fcee98 (commit) via 5995fd4c3e1630b721fbe20de07bb47c283ebb85 (commit) via 0ed7fbc7956f5c7edd18233852dd9fea6f5ce7cb (commit) via c248902276b45e683c5f17a3f7d8ef3b572eaebe (commit) via 64a06325dad8d1f7a4b4a92603f4f78f3b6db847 (commit) from 37a120731ee1cfd426c548af387e64093ecb852f (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 3c45b57c5c6053c833405be223cac61e6b31b67d Author: Pierangelo Masarati ando@OpenLDAP.org Date: Sat Dec 28 16:18:10 2013 +0100
handle softadd/softdel (internal modifications; ITS#7773)
commit 9b326b098a4c903983c5cccf20f5047d42029c7d Author: Pierangelo Masarati ando@OpenLDAP.org Date: Sat Dec 28 11:03:55 2013 +0100
fix years old cut'n'paste
commit e158d7db4bf5a585c649d05a0f6da8c048d610f5 Author: Hallvard Furuseth hallvard@openldap.org Date: Wed Dec 11 14:40:45 2013 +0100
ITS#6758 Add SLAP_OP() &co, contrib:wrap_slap_ops.
Add framework for debug macros SLAP_OP(), slap_be_op(), slap_bi_op() around LDAP-operation backend calls.
contrib/slapd-tools/wrap_slap_ops converts code to use them.
Code compiles as before by default. #define USE_RS_ASSERT enables debugging, $NO_RS_ASSERT tweaks it. See slapd/result.c.
commit 13916cd3811fd5ebc7da6fcae019ae1e56fcee98 Author: Hallvard Furuseth hallvard@openldap.org Date: Wed Dec 11 14:40:45 2013 +0100
ITS#6758 Rewrite code for contrib:wrap_slap_ops.
Tweak slapd code so wrap_slap_ops can process it: Use pointers BackendInfo *bi instead of array "func" = &bi->bi_op_bind. In slapo-chain, keep a slap_operation_t instead of a function ptr.
commit 5995fd4c3e1630b721fbe20de07bb47c283ebb85 Author: Howard Chu hyc@openldap.org Date: Wed Dec 11 04:41:48 2013 -0800
ITS#7762 shortcut NULL RDNs
commit 0ed7fbc7956f5c7edd18233852dd9fea6f5ce7cb Author: Howard Chu hyc@openldap.org Date: Tue Dec 10 18:08:36 2013 -0800
ITS#7761 bail out of search if config is pausing
commit c248902276b45e683c5f17a3f7d8ef3b572eaebe Author: Howard Chu hyc@openldap.org Date: Mon Dec 9 01:30:30 2013 -0800
ITS#7753 use $(MAKE) for tests
commit 64a06325dad8d1f7a4b4a92603f4f78f3b6db847 Author: Howard Chu hyc@openldap.org Date: Sat Dec 7 08:36:14 2013 -0800
ITS#7759 avoid assert in parse_passwdpolicy_control
-----------------------------------------------------------------------
Summary of changes: Makefile.in | 2 +- contrib/slapd-tools/README | 5 + contrib/slapd-tools/wrap_slap_ops | 162 +++++++++++++++++++++++++++++++++++ libraries/libldap/deref.c | 2 +- libraries/libldap/getdn.c | 2 +- libraries/libldap/ppolicy.c | 5 + servers/slapd/back-bdb/search.c | 3 + servers/slapd/back-ldap/chain.c | 35 ++++---- servers/slapd/back-mdb/search.c | 3 + servers/slapd/back-perl/search.c | 2 +- servers/slapd/back-relay/op.c | 6 +- servers/slapd/back-sql/search.c | 1 + servers/slapd/backend.c | 63 ++++++++++++++ servers/slapd/backglue.c | 11 +-- servers/slapd/backover.c | 17 ++-- servers/slapd/overlays/constraint.c | 7 ++ servers/slapd/overlays/pcache.c | 7 +- servers/slapd/proto-slap.h | 10 ++ servers/slapd/result.c | 16 +++- servers/slapd/slapi/slapi_ops.c | 6 +- 20 files changed, 315 insertions(+), 50 deletions(-) create mode 100755 contrib/slapd-tools/wrap_slap_ops