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 79b12f2f93aadccf41024f3985b68223beba12f6 (commit)
from 26ce222b6ac2ee2194e2126eee7c0970844e6398 (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 79b12f2f93aadccf41024f3985b68223beba12f6
Author: Howard Chu <hyc(a)openldap.org>
Date: Wed Dec 11 04:41:48 2013 -0800
ITS#7762 shortcut NULL RDNs
-----------------------------------------------------------------------
Summary of changes:
libraries/libldap/getdn.c | 2 +-
1 files changed, 1 insertions(+), 1 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 a2ed03642ca325cfe7685d6df782f3b363f9e46c (commit)
via 2ce9ffa003ca190c25b68bd5486635a186f967d8 (commit)
via 7e453c97632599a420824c06458353f2a18242aa (commit)
via a58fd16ae5823823567d51c33f7ca07d983255f9 (commit)
via d69d2ce2307e9d0e2167843935c386b05a869c31 (commit)
via 734bc7e6ada2588cddac6a67688421591a895807 (commit)
via a8de10d148e99297c9ce4fba7a6ede053c3d6c74 (commit)
via 6808abe770d916c395a20718571ff843c903af71 (commit)
via c0858e6d93edb062b3f33672c37294c60dfdf069 (commit)
via fcb0d09598ace3b47ef95022d2f3b41f531a7d1f (commit)
via 753356a38a01eb5ec62ee3b0c3f0100e38b4ecf8 (commit)
via e1266bf33174383cec0a1a8a25133cf86bbd51ff (commit)
from 1ffb5e1cba200b0e362d1f7a56f09f8ad8081451 (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 a2ed03642ca325cfe7685d6df782f3b363f9e46c
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Replace MDB_node.mn_offset[], to ease debugging.
commit 2ce9ffa003ca190c25b68bd5486635a186f967d8
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Comment MDB_node, mdb_page_unspill, mdb_update_key
commit 7e453c97632599a420824c06458353f2a18242aa
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Fix mdb_reader_list() and its spec.
It and the MDB_msg_func can now return >= 0 for success.
Always return any MDB_msg_func() error result.
commit a58fd16ae5823823567d51c33f7ca07d983255f9
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Support dynamic max MDB keysize.
commit d69d2ce2307e9d0e2167843935c386b05a869c31
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:13 2013 +0100
Raise safe max MDB_MAXKEYSIZE.
Use a sub-DB for DUPSORT item #1/#2 per key if needed: Not a sub-
page too big for a node, nor an overflow page (which not all DUPSORT
code checks for). Move "insert" code, to avoid non-loop goto upwards.
(This is the commit which needs the change to xdata.mv_size in
commit 9d6e4a916367e85ffdf37b1cb7b5cdb7ac0e15b5 "page sizes".)
commit 734bc7e6ada2588cddac6a67688421591a895807
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
Relax MDB_MAXKEYSIZE for existing data.
Handle keys stored by a liblmdb with a bigger MDB_MAXKEYSIZE.
mdb_get/mdb_del(absent key bigger than our MDB_MAXKEYSIZE)
now return MDB_NOTFOUND instead of MDB_BAD_VALSIZE.
commit a8de10d148e99297c9ce4fba7a6ede053c3d6c74
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
ITS#7589 Fix me_nodemax and related node sizes.
Change me_nodemax to not count the mp_ptrs[] entry. That's mostly
how it was used. Compare node sizes ">" me_nodemax instead of ">=".
The ">=" was a workaround for confusing sizes with and without the
mp_ptrs[] entry, but broke for nodes with size (old me_nodemax-1).
Explicitly make me_nodemax even. An odd value could break the
comparisons. It was even anyway because MDB_MINKEYS == 2.
commit 6808abe770d916c395a20718571ff843c903af71
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
ITS#7589 Fix delete(uneven-sized MDB_DUPFIXED data).
Do not give uneven sizes to the sub-page and the node it lives in.
commit c0858e6d93edb062b3f33672c37294c60dfdf069
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
put(MDB_MULTIPLE): Skip existing item cleanly.
Don't set dkey.mv_size if mdb won't clear it before next iteration.
commit fcb0d09598ace3b47ef95022d2f3b41f531a7d1f
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
Add EVEN(): Micro-optimize "up to multiple of 2".
commit 753356a38a01eb5ec62ee3b0c3f0100e38b4ecf8
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
Warning cleanup.
Drop unused computed/assigned values.
mdb_page_alloc(): Make "mop_len>0 implies mop!=NULL" provable.
commit e1266bf33174383cec0a1a8a25133cf86bbd51ff
Author: Hallvard Furuseth <hallvard(a)openldap.org>
Date: Wed Dec 11 11:57:12 2013 +0100
Clean up mdb_copy.
Support MDB_NOSUBDIR. Catch more errors. Write messages
to stderr, not stdout which the data too may be piped to.
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/lmdb.h | 10 +-
libraries/liblmdb/mdb.c | 240 +++++++++++++++++++++++-------------------
libraries/liblmdb/mdb_copy.1 | 10 ++-
libraries/liblmdb/mdb_copy.c | 28 ++++--
libraries/liblmdb/midl.c | 2 +-
5 files changed, 166 insertions(+), 124 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, master has been updated
via 26ce222b6ac2ee2194e2126eee7c0970844e6398 (commit)
from 815eddda4c24eb7c48ad796c8a01243467d2cbdb (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 26ce222b6ac2ee2194e2126eee7c0970844e6398
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue Dec 10 18:08:36 2013 -0800
ITS#7761 bail out of search if config is pausing
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/back-bdb/search.c | 3 +++
servers/slapd/back-mdb/search.c | 3 +++
servers/slapd/back-perl/search.c | 2 +-
servers/slapd/back-sql/search.c | 1 +
4 files changed, 8 insertions(+), 1 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, master has been updated
via 815eddda4c24eb7c48ad796c8a01243467d2cbdb (commit)
from 80e6316d37dd024bf32ed6db024f195c1b51ef7f (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 815eddda4c24eb7c48ad796c8a01243467d2cbdb
Author: Howard Chu <hyc(a)openldap.org>
Date: Mon Dec 9 01:30:30 2013 -0800
ITS#7753 use $(MAKE) for tests
-----------------------------------------------------------------------
Summary of changes:
Makefile.in | 2 +-
1 files changed, 1 insertions(+), 1 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, master has been updated
via 80e6316d37dd024bf32ed6db024f195c1b51ef7f (commit)
from f8efeb42783f958dd0dc997f8084e6b3b4502830 (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 80e6316d37dd024bf32ed6db024f195c1b51ef7f
Author: Howard Chu <hyc(a)openldap.org>
Date: Sat Dec 7 08:36:14 2013 -0800
ITS#7759 avoid assert in parse_passwdpolicy_control
-----------------------------------------------------------------------
Summary of changes:
libraries/libldap/ppolicy.c | 5 +++++
1 files changed, 5 insertions(+), 0 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 1ffb5e1cba200b0e362d1f7a56f09f8ad8081451 (commit)
from b77689f97572980d5de729e2fe6d8a5e6e9d6218 (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 1ffb5e1cba200b0e362d1f7a56f09f8ad8081451
Author: Howard Chu <hyc(a)symas.com>
Date: Wed Dec 4 18:42:49 2013 -0800
Fix GET_BOTH_RANGE
On near match, return the matched data.
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb.c | 1 +
1 files changed, 1 insertions(+), 0 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 fe5a757912c877f6805e39dc6fb302a682133463 (commit)
from c3d84bcd06d0017a7fad5f1d7932c590605e6369 (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 fe5a757912c877f6805e39dc6fb302a682133463
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue Dec 3 14:16:20 2013 -0800
ITS#7757 plug memleak
-----------------------------------------------------------------------
Summary of changes:
libraries/libldap/cyrus.c | 10 ++++++++--
1 files changed, 8 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 28e182d7a7c7c9e13c1d8ac8698613254ca7eb39 (commit)
via 167482e63c79dfa326ed71871d93a5bc7377c81e (commit)
from a34e06985276b8bf0630f2e49c9f853c28ca2f34 (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 28e182d7a7c7c9e13c1d8ac8698613254ca7eb39
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Wed Dec 4 10:37:45 2013 -0800
ITS#7757
commit 167482e63c79dfa326ed71871d93a5bc7377c81e
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue Dec 3 14:16:20 2013 -0800
ITS#7757 plug memleak
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 1 +
libraries/libldap/cyrus.c | 10 ++++++++--
2 files changed, 9 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, master has been updated
via f8efeb42783f958dd0dc997f8084e6b3b4502830 (commit)
from 1fcd116219680bd3b3a2a439242ad29f3eaca345 (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 f8efeb42783f958dd0dc997f8084e6b3b4502830
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue Dec 3 14:16:20 2013 -0800
ITS#7757 plug memleak
-----------------------------------------------------------------------
Summary of changes:
libraries/libldap/cyrus.c | 10 ++++++++--
1 files changed, 8 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 a34e06985276b8bf0630f2e49c9f853c28ca2f34 (commit)
via 5b2687a0106a77977106b0a726f7e9e9026bdc8c (commit)
via b77689f97572980d5de729e2fe6d8a5e6e9d6218 (commit)
from a122865625c8245f65da20bf41e19f30c1c3b6a5 (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 a34e06985276b8bf0630f2e49c9f853c28ca2f34
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Dec 2 09:51:20 2013 -0800
ITS#7756
commit 5b2687a0106a77977106b0a726f7e9e9026bdc8c
Merge: a122865 b77689f
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Dec 2 09:50:50 2013 -0800
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 1 +
libraries/liblmdb/mdb.c | 20 ++++++++++++++------
2 files changed, 15 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 c3d84bcd06d0017a7fad5f1d7932c590605e6369 (commit)
via b77689f97572980d5de729e2fe6d8a5e6e9d6218 (commit)
from b9783ac6ff1e6ca946b2d060ddf76b9e656769cb (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 c3d84bcd06d0017a7fad5f1d7932c590605e6369
Merge: b9783ac b77689f
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Dec 2 09:50:38 2013 -0800
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_5
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb.c | 20 ++++++++++++++------
1 files changed, 14 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, master has been updated
via 1fcd116219680bd3b3a2a439242ad29f3eaca345 (commit)
via b77689f97572980d5de729e2fe6d8a5e6e9d6218 (commit)
from ac9ac0094e5d5aa45b726bd93a06ec57edf830e4 (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 1fcd116219680bd3b3a2a439242ad29f3eaca345
Merge: ac9ac00 b77689f
Author: Howard Chu <hyc(a)openldap.org>
Date: Fri Nov 29 17:04:58 2013 -0800
Merge remote-tracking branch 'origin/mdb.master'
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb.c | 20 ++++++++++++++------
1 files changed, 14 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, mdb.master has been updated
via b77689f97572980d5de729e2fe6d8a5e6e9d6218 (commit)
from f39bceb800dd1b1b4b05cfb45a3ddde94a273fff (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 b77689f97572980d5de729e2fe6d8a5e6e9d6218
Author: Howard Chu <hyc(a)symas.com>
Date: Fri Nov 29 17:03:49 2013 -0800
ITS#7756 keysizes were wrong in mdb_update_key
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb.c | 20 ++++++++++++++------
1 files changed, 14 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 b9783ac6ff1e6ca946b2d060ddf76b9e656769cb (commit)
from ba3c0a2eeb0dd046356e7e72b265b82e2b6d1ab1 (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 b9783ac6ff1e6ca946b2d060ddf76b9e656769cb
Author: Howard Chu <hyc(a)openldap.org>
Date: Thu Nov 21 11:18:24 2013 -0800
ITS#7749 more for prev commit
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/overlays/syncprov.c | 1 -
1 files changed, 0 insertions(+), 1 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 a122865625c8245f65da20bf41e19f30c1c3b6a5 (commit)
via 4396601d94dd481848163047ce98bfc6a0e44ee5 (commit)
from 18ad97b024b4106af8e6091132b7158e59054996 (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 a122865625c8245f65da20bf41e19f30c1c3b6a5
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Fri Nov 22 07:39:43 2013 -0800
More for ITS#7749
commit 4396601d94dd481848163047ce98bfc6a0e44ee5
Author: Howard Chu <hyc(a)openldap.org>
Date: Thu Nov 21 11:18:24 2013 -0800
ITS#7749 more for prev commit
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 1 +
servers/slapd/overlays/syncprov.c | 1 -
2 files changed, 1 insertions(+), 1 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, master has been updated
via ac9ac0094e5d5aa45b726bd93a06ec57edf830e4 (commit)
from a4b9cab04fe8accf237a7d14aa93dfde191e4dd8 (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 ac9ac0094e5d5aa45b726bd93a06ec57edf830e4
Author: Howard Chu <hyc(a)openldap.org>
Date: Thu Nov 21 11:18:24 2013 -0800
ITS#7749 more for prev commit
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/overlays/syncprov.c | 1 -
1 files changed, 0 insertions(+), 1 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 18ad97b024b4106af8e6091132b7158e59054996 (commit)
via a6e63a158d220436d208ccbac26daf8c90ff0215 (commit)
from 21b9cc54b1b9954a1f4f5308f388aab5cb22fdee (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 18ad97b024b4106af8e6091132b7158e59054996
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Tue Nov 19 07:26:10 2013 -0800
ITS#7750
commit a6e63a158d220436d208ccbac26daf8c90ff0215
Author: Howard Chu <hyc(a)openldap.org>
Date: Mon Nov 18 20:39:35 2013 -0800
ITS#7750 fix olcDbConfig modification
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 1 +
servers/slapd/back-bdb/config.c | 9 ++++++++-
2 files changed, 9 insertions(+), 1 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 ba3c0a2eeb0dd046356e7e72b265b82e2b6d1ab1 (commit)
from 3ad2270e26a7295faeb575923649fe16713e6dcc (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 ba3c0a2eeb0dd046356e7e72b265b82e2b6d1ab1
Author: Howard Chu <hyc(a)openldap.org>
Date: Mon Nov 18 20:39:35 2013 -0800
ITS#7750 fix olcDbConfig modification
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/back-bdb/config.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 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 21b9cc54b1b9954a1f4f5308f388aab5cb22fdee (commit)
from 33ab5a845b7825bdb6c7bdb29f7db81be6f1b0b7 (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 21b9cc54b1b9954a1f4f5308f388aab5cb22fdee
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Tue Nov 19 07:24:55 2013 -0800
Return to release engineering
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 2 ++
build/version.var | 2 +-
2 files changed, 3 insertions(+), 1 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, master has been updated
via a4b9cab04fe8accf237a7d14aa93dfde191e4dd8 (commit)
from 1682691f50132e0350ee290fe98ba8840d100f86 (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 a4b9cab04fe8accf237a7d14aa93dfde191e4dd8
Author: Howard Chu <hyc(a)openldap.org>
Date: Mon Nov 18 20:39:35 2013 -0800
ITS#7750 fix olcDbConfig modification
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/back-bdb/config.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 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 3ad2270e26a7295faeb575923649fe16713e6dcc (commit)
from be525ef94533e0d578f3fb7922604ec7249faccc (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 3ad2270e26a7295faeb575923649fe16713e6dcc
Author: Howard Chu <hyc(a)openldap.org>
Date: Thu Nov 14 21:17:13 2013 -0800
Fix typo for Windows
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/daemon.c | 2 +-
1 files changed, 1 insertions(+), 1 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, master has been updated
via 1682691f50132e0350ee290fe98ba8840d100f86 (commit)
from 06e384d55b921b489129713db40bd5c861a4742f (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 1682691f50132e0350ee290fe98ba8840d100f86
Author: Howard Chu <hyc(a)openldap.org>
Date: Thu Nov 14 21:17:13 2013 -0800
Fix typo for Windows
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/daemon.c | 2 +-
1 files changed, 1 insertions(+), 1 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 annotated tag, OPENLDAP_REL_ENG_2_4_38 has been updated
to fc0c3e0674a8aa332b5de0c92934789290c32ceb (tag)
from 3b2c5010a2dd20f7023c1acaab98881286ac87fc (which is now obsolete)
tagging 33ab5a845b7825bdb6c7bdb29f7db81be6f1b0b7 (commit)
replaces OPENLDAP_REL_ENG_2_4_37
tagged by Quanah Gibson-Mount
on Thu Nov 14 19:32:01 2013 -0800
- Log -----------------------------------------------------------------
OpenLDAP 2.4.38
David Wilson (1):
ITS#7734 Add MDB_NORDAHEAD to CHANGELESS.
Hallvard Furuseth (4):
mdb_cursor_put(): Factor out code. Kill a label.
ITS#7713 Handle bigger OS page sizes
Fix MDB_MAXKEYSIZE doc: Account for MDB_DUPSORT.
Add MDB_CLEANMEM option.
Howard Chu (22):
ITS#7733 check cursor index before cursor_del
ITS#7662 cleanup reader txn in mdb_entry_get()
ITS#7736 fix regression in ITS#7733 patch
ITS#7736 fix regression in ITS#7733 patch
ITS#7589 another mdb_page_split fix
More for #7589
ITS#7735 plug memleak
Fix slap_reparse_sync_cookie prototype
ITS#7739 fix for empty nested include
ITS#7735 fix memctx usage in prev commit
Fix CONFIG_DELETE crash
ITS#7741 Fix entryDN index lookup
Fix cursor_del0 cursor fixup
Fix prev commit, cursor depth comparison
Change default mem init behavior
Clarify WRITEMAP / NOMEMINIT
Windows/Win64/MSVC tweaks
Bump to 0.9.10
Doc tweak
ITS#7743 Fix indexed AND filter
ITS#7746 fix for cert with NULL issuerDN
ITS#7749 propagate op->o_extra in syncprov_findbase
Jorge Perez Burgos (1):
ITS#7740 back-meta: avoid blocking other threads
Quanah Gibson-Mount (19):
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
ITS#7733, ITS#7734
ITS#7662
Return to RE
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
ITS#7737 Add a matching rule for OlcDbEnvFlgs
ITS#7737
ITS#7735
ITS#7740
ITS#7739
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
More for ITS#7589
ITS#7741
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
ITS#7743 bits
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
ITS#7746
Prep for release
ITS#7749
-----------------------------------------------------------------------
---
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 33ab5a845b7825bdb6c7bdb29f7db81be6f1b0b7 (commit)
via 1bde42e05e8aeaf7e22e8a59767849454b099b21 (commit)
from 4239fd74d6535c9258b8da5c77e3e7dbbde39e53 (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 33ab5a845b7825bdb6c7bdb29f7db81be6f1b0b7
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Nov 14 19:31:27 2013 -0800
ITS#7749
commit 1bde42e05e8aeaf7e22e8a59767849454b099b21
Author: Howard Chu <hyc(a)openldap.org>
Date: Thu Nov 14 19:16:57 2013 -0800
ITS#7749 propagate op->o_extra in syncprov_findbase
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 1 +
servers/slapd/overlays/syncprov.c | 1 +
2 files changed, 2 insertions(+), 0 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 be525ef94533e0d578f3fb7922604ec7249faccc (commit)
from b04eec771878fb71fb1ee8322d7a4b9ccc4ae18b (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 be525ef94533e0d578f3fb7922604ec7249faccc
Author: Howard Chu <hyc(a)openldap.org>
Date: Thu Nov 14 19:16:57 2013 -0800
ITS#7749 propagate op->o_extra in syncprov_findbase
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/overlays/syncprov.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git