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_4 has been updated via bf72cf5ec047843901e77351701dca139f7eb01c (commit) via 03689908064da2bd237f1bff2da3cffbf95658fb (commit) via cb7405ae5cbe2b4b0d29bd376db27c7d56048261 (commit) via 348b24b43260b0f2b75da525429067abb8627deb (commit) via c94099dcb606a2c2f849ae0dbab2fcfda2df0967 (commit) via 5727face2c4b78e678966ac3eb6bc24794e3d53a (commit) via a078dc3d34389a644b7b8402718b3662316724fa (commit) from d9616507ee98bf2b4197970cde3f29d9a1ca1d63 (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 bf72cf5ec047843901e77351701dca139f7eb01c Author: Quanah Gibson-Mount quanah@openldap.org Date: Thu May 29 12:53:27 2014 -0500
ITS#7705, ITS#7800
commit 03689908064da2bd237f1bff2da3cffbf95658fb Author: Howard Chu hyc@openldap.org Date: Thu May 15 21:27:21 2014 -0700
ITS#7705,#7800 fix prev commit
Better check for missing IDs
commit cb7405ae5cbe2b4b0d29bd376db27c7d56048261 Author: Howard Chu hyc@openldap.org Date: Thu May 15 20:46:20 2014 -0700
ITS#7705,#7800 fix back-mdb pagedResults search
mdb_idscopes was remembering the IDs of every entry it checked; it should only have been saving the IDs of entries that were actually in the search scope. The extra entries filled the scopes array, causing a loop searching for a parent entry that was never inserted.
commit 348b24b43260b0f2b75da525429067abb8627deb Author: Quanah Gibson-Mount quanah@openldap.org Date: Thu May 29 12:48:53 2014 -0500
ITS#7831
commit c94099dcb606a2c2f849ae0dbab2fcfda2df0967 Author: Howard Chu hyc@openldap.org Date: Fri Apr 4 03:25:17 2014 -0700
ITS#7831 fix double-free
caused by c1e937c2622abd4de708c22529a89f8e914887bd (ITS#6684)
commit 5727face2c4b78e678966ac3eb6bc24794e3d53a Author: Quanah Gibson-Mount quanah@openldap.org Date: Thu May 29 12:47:33 2014 -0500
ITS#7742
commit a078dc3d34389a644b7b8402718b3662316724fa Author: HAMANO Tsukasa hamano@osstech.co.jp Date: Fri Nov 8 17:58:00 2013 +0900
ITS#7742 New: PBKDF2 module
Signed-off-by: HAMANO Tsukasa hamano@osstech.co.jp
-----------------------------------------------------------------------
Summary of changes: CHANGES | 3 + contrib/slapd-modules/autogroup/autogroup.c | 1 - .../slapd-modules/passwd/{sha2 => pbkdf2}/Makefile | 15 +- contrib/slapd-modules/passwd/pbkdf2/README | 87 ++++++ contrib/slapd-modules/passwd/pbkdf2/pw-pbkdf2.c | 295 ++++++++++++++++++++ servers/slapd/back-mdb/dn2id.c | 18 +- servers/slapd/back-mdb/idl.h | 1 + servers/slapd/back-mdb/search.c | 16 +- 8 files changed, 420 insertions(+), 16 deletions(-) copy contrib/slapd-modules/passwd/{sha2 => pbkdf2}/Makefile (82%) create mode 100644 contrib/slapd-modules/passwd/pbkdf2/README create mode 100644 contrib/slapd-modules/passwd/pbkdf2/pw-pbkdf2.c