A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, mdb.master has been updated
via a93810cc3d1a062bf5edbe9c14795d0360cda8a4 (commit)
from c0d64cf182eac07745965cb14dcc084315fcc0ae (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 a93810cc3d1a062bf5edbe9c14795d0360cda8a4
Author: Alexey Naumov <alexey.naumov(a)gmail.com>
Date: Sun May 25 17:10:21 2014 +0600
Fix possible crash in DLL_THREAD_DETACH (explodes in .Net Framework)
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, mdb.master has been updated
via c0d64cf182eac07745965cb14dcc084315fcc0ae (commit)
via cb5656c726551cc22ea149ab177fb5a2db4ac6c6 (commit)
via 64a02e22799da289314001e16bfc6d2e89f63601 (commit)
from b37b2a651ff2df3824d3f403538627983d5b81d1 (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 c0d64cf182eac07745965cb14dcc084315fcc0ae
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 10:50:04 2014 +0200
Comment ~MDB_APPEND, from earlier commit message.
commit cb5656c726551cc22ea149ab177fb5a2db4ac6c6
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 10:47:56 2014 +0200
Factor out mdb_cmp_clong()
commit 64a02e22799da289314001e16bfc6d2e89f63601
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 10:47:56 2014 +0200
More for big MDB_MAXKEYSIZE with MDB_DUPSORT.
With mdb_cursor_put(new key, data item big enough to need a sub-DB):
- Track cursors as when adding other nodes. The "!do_sub" is now
unneeded. Before ITS#7861 it distinguished inserting key from data.
- Set MDB_TXN_ERROR if an empty sub-DB was created. I.e. adding
key:subDB succeeded, but inserting the data item failed.
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb.c | 28 +++++++++++++++-------------
1 file changed, 15 insertions(+), 13 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, mdb.master has been updated
via b37b2a651ff2df3824d3f403538627983d5b81d1 (commit)
via ba8f59edf42ff700bebf65e7e30e3d1f0101b326 (commit)
via ac158c7e1e1a86b13eb7c0d2b14169c0e43e6198 (commit)
via d170df58fbd5ab2e99783f945f0d86d3d3749296 (commit)
via 92c01ffda80fe2224391b46b9be12eeb449456bf (commit)
via 83676dc0f0c77b4de4fd5e942a50038f5c5ba17a (commit)
via 2f33effcdc4f21fec8da9921044de0d124709e80 (commit)
from 4b9aed26a5b1c0027b10d211c6e7270dbb1ade1c (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 b37b2a651ff2df3824d3f403538627983d5b81d1
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 09:06:08 2014 +0200
Factor out MDB_TXN_ERROR
commit ba8f59edf42ff700bebf65e7e30e3d1f0101b326
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 09:06:08 2014 +0200
Simplify MDB_MULTIPLE
commit ac158c7e1e1a86b13eb7c0d2b14169c0e43e6198
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 09:06:08 2014 +0200
ITS#7834 Fix MDB_MULTIPLE writing multiple keys.
Update the state before looping, so the key is not duplicated.
Broke in 4c8f57615c5ca7b014c038e59c1045182e74f5ad (mostly).
commit d170df58fbd5ab2e99783f945f0d86d3d3749296
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 09:06:08 2014 +0200
ITS#7861 Re-fix MDB_db.md_entries.
mdb_cursor_del(): Fix md_entries with MDB_NODUPDATA.
mdb_cursor_put(): Check in xcursor whether an item got inserted. Count
data instead of keys after 13d6d59c512065db3741c20c65b4d9928b986968.
commit 92c01ffda80fe2224391b46b9be12eeb449456bf
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 09:06:08 2014 +0200
ITS#7771 mdb_cursor_put doc: Cursor moves on error
commit 83676dc0f0c77b4de4fd5e942a50038f5c5ba17a
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 09:06:08 2014 +0200
Document DBI issues, extend MDB_BAD_VALSIZE.
commit 2f33effcdc4f21fec8da9921044de0d124709e80
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Fri May 30 09:06:08 2014 +0200
More ITS#7793 Check key->mv_size with MDB_CURRENT.
Since non-NULL key must be provided now.
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/lmdb.h | 27 ++++++++++++-----
libraries/liblmdb/mdb.c | 74 ++++++++++++++++++++++++----------------------
2 files changed, 58 insertions(+), 43 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
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 871ed0e37390a5f316bb1a2711c717b1fb2f003f (commit)
via 8d7f8f20890b6083c89f8e89ba45fd75ee644a44 (commit)
via 15b6efec5a3897167c0b72f4c169800ccd190a17 (commit)
from 0ec884bc271ccc26ae97dca1eda38c221f86139b (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 871ed0e37390a5f316bb1a2711c717b1fb2f003f
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue May 27 18:12:49 2014 -0700
Don't do any merging if manageDSAit was used
Just passthru search to local DB
commit 8d7f8f20890b6083c89f8e89ba45fd75ee644a44
Author: Howard Chu <hyc(a)openldap.org>
Date: Mon May 26 11:08:14 2014 -0700
ITS#7859 fix to read 4096-character lines
commit 15b6efec5a3897167c0b72f4c169800ccd190a17
Author: Howard Chu <hyc(a)openldap.org>
Date: Sun May 25 12:49:06 2014 -0700
ITS#7858 fix install path
-----------------------------------------------------------------------
Summary of changes:
contrib/slapd-modules/nssov/Makefile | 2 +-
libraries/libldap/ldif.c | 2 +-
servers/slapd/overlays/translucent.c | 3 +++
3 files changed, 5 insertions(+), 2 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
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 b000d958ac404478e1ccead1c3a38fd599867831 (commit)
via 714b1debf7f188d130a882c556720abd1eb7a070 (commit)
via d698cd7da9845e014c95884e0db4c632aad22939 (commit)
via 724422d0e9ba34143025f0123a4c253c2b40e2e1 (commit)
via 95afdef9f9ec1f9c0de17081cec65c585c741997 (commit)
via 4e96f2f5bf79d23b14c6153867309e41151971cc (commit)
via b2578162d2ce3f2163b16155baa6b53032b3eb6c (commit)
via 3b07d4144dc4581f27fd55e413ca479a854cae9b (commit)
from bf72cf5ec047843901e77351701dca139f7eb01c (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 b000d958ac404478e1ccead1c3a38fd599867831
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu May 29 13:04:47 2014 -0500
ITS#7864
commit 714b1debf7f188d130a882c556720abd1eb7a070
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue May 27 18:12:49 2014 -0700
Don't do any merging if manageDSAit was used
Just passthru search to local DB
commit d698cd7da9845e014c95884e0db4c632aad22939
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu May 29 13:04:08 2014 -0500
ITS#7859
commit 724422d0e9ba34143025f0123a4c253c2b40e2e1
Author: Howard Chu <hyc(a)openldap.org>
Date: Mon May 26 11:08:14 2014 -0700
ITS#7859 fix to read 4096-character lines
commit 95afdef9f9ec1f9c0de17081cec65c585c741997
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu May 29 13:03:31 2014 -0500
ITS#7858
commit 4e96f2f5bf79d23b14c6153867309e41151971cc
Author: Howard Chu <hyc(a)openldap.org>
Date: Sun May 25 12:49:06 2014 -0700
ITS#7858 fix install path
commit b2578162d2ce3f2163b16155baa6b53032b3eb6c
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu May 29 13:02:12 2014 -0500
ITS#7849
commit 3b07d4144dc4581f27fd55e413ca479a854cae9b
Author: Howard Chu <hyc(a)openldap.org>
Date: Fri May 23 06:56:56 2014 -0700
ITS#7849 make sure to send cookie after fallback
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 6 +++++-
contrib/slapd-modules/nssov/Makefile | 2 +-
libraries/libldap/ldif.c | 2 +-
servers/slapd/overlays/translucent.c | 3 +++
servers/slapd/syncrepl.c | 4 ++++
5 files changed, 14 insertions(+), 3 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
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 0ec884bc271ccc26ae97dca1eda38c221f86139b (commit)
via bfe1dc79ad4699ca1103d83a535764ca786114c4 (commit)
from 1466cad3e8744886f5b912d570085daaf1ec3f33 (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 0ec884bc271ccc26ae97dca1eda38c221f86139b
Author: Howard Chu <hyc(a)openldap.org>
Date: Fri May 23 06:56:56 2014 -0700
ITS#7849 make sure to send cookie after fallback
commit bfe1dc79ad4699ca1103d83a535764ca786114c4
Author: Howard Chu <hyc(a)openldap.org>
Date: Fri May 23 06:56:16 2014 -0700
ITS#7616 defer searches while consumer refreshing
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/syncrepl.c | 42 ++++++++++++++++++++++++++++++++++++------
1 file changed, 36 insertions(+), 6 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
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 1466cad3e8744886f5b912d570085daaf1ec3f33 (commit)
via 18bf22ac67b5e12898d2d722f334bf695cb9cf91 (commit)
from 53c37b4775093e72f0d89956f408e02a7af7c547 (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 1466cad3e8744886f5b912d570085daaf1ec3f33
Author: Howard Chu <hyc(a)openldap.org>
Date: Thu May 15 21:27:21 2014 -0700
ITS#7705,#7800 fix prev commit
Better check for missing IDs
commit 18bf22ac67b5e12898d2d722f334bf695cb9cf91
Author: Howard Chu <hyc(a)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.
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/back-mdb/dn2id.c | 18 ++++++++++++++++--
servers/slapd/back-mdb/idl.h | 1 +
servers/slapd/back-mdb/search.c | 16 ++++++++++------
3 files changed, 27 insertions(+), 8 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
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(a)openldap.org>
Date: Thu May 29 12:53:27 2014 -0500
ITS#7705, ITS#7800
commit 03689908064da2bd237f1bff2da3cffbf95658fb
Author: Howard Chu <hyc(a)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(a)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(a)openldap.org>
Date: Thu May 29 12:48:53 2014 -0500
ITS#7831
commit c94099dcb606a2c2f849ae0dbab2fcfda2df0967
Author: Howard Chu <hyc(a)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(a)openldap.org>
Date: Thu May 29 12:47:33 2014 -0500
ITS#7742
commit a078dc3d34389a644b7b8402718b3662316724fa
Author: HAMANO Tsukasa <hamano(a)osstech.co.jp>
Date: Fri Nov 8 17:58:00 2013 +0900
ITS#7742 New: PBKDF2 module
Signed-off-by: HAMANO Tsukasa <hamano(a)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
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
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 53c37b4775093e72f0d89956f408e02a7af7c547 (commit)
from b7edd23ef843b243090c2a715adefdcf883dae2c (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 53c37b4775093e72f0d89956f408e02a7af7c547
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Fri Apr 25 16:04:19 2014 -0500
(L)MDB updates
-----------------------------------------------------------------------
Summary of changes:
doc/guide/admin/appendix-common-errors.sdf | 6 +++---
doc/guide/admin/aspell.en.pws | 2 ++
doc/guide/admin/backends.sdf | 2 +-
doc/guide/admin/install.sdf | 10 +++++++---
doc/guide/admin/maintenance.sdf | 16 ++++++++++------
doc/guide/admin/monitoringslapd.sdf | 18 ++++++++++++++++--
6 files changed, 39 insertions(+), 15 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
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 b7edd23ef843b243090c2a715adefdcf883dae2c (commit)
via 01c42c7fa2c40b3cc515269d3a80b6a29d2a3f42 (commit)
via a0bb95fa14406790be396a78301f5286cc34a0e4 (commit)
via c2f03d1bc720def67066468f448797eb1ac00fd6 (commit)
from 77433fe70823c933593d69fb8737ba24c84424b5 (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 b7edd23ef843b243090c2a715adefdcf883dae2c
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Fri Apr 25 15:03:50 2014 -0500
Convert quickstart guide to cn=config
commit 01c42c7fa2c40b3cc515269d3a80b6a29d2a3f42
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Fri Apr 25 14:43:12 2014 -0500
Relocate the maxsize bit
commit a0bb95fa14406790be396a78301f5286cc34a0e4
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Fri Apr 25 14:36:09 2014 -0500
Sample slapd.ldif is missing the olcDbMaxSize parameter
commit c2f03d1bc720def67066468f448797eb1ac00fd6
Author: Howard Chu <hyc(a)openldap.org>
Date: Fri Apr 4 03:25:17 2014 -0700
ITS#7831 fix double-free
caused by c1e937c2622abd4de708c22529a89f8e914887bd (ITS#6684)
-----------------------------------------------------------------------
Summary of changes:
contrib/slapd-modules/autogroup/autogroup.c | 1 -
doc/guide/admin/quickstart.sdf | 68 +++++++++++++++++----------
servers/slapd/slapd.ldif | 1 +
3 files changed, 44 insertions(+), 26 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git