mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 07:30:57 -05:00
initialize nextid with NOID not -1.
This commit is contained in:
parent
2318ea0fd6
commit
5389e40ba5
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ ldbm_back_init(
|
|||
li = (struct ldbminfo *) ch_calloc( 1, sizeof(struct ldbminfo) );
|
||||
|
||||
/* arrange to read nextid later (on first request for it) */
|
||||
li->li_nextid = -1;
|
||||
li->li_nextid = NOID;
|
||||
|
||||
/* default cache size */
|
||||
li->li_cache.c_maxsize = DEFAULT_CACHE_SIZE;
|
||||
|
|
|
|||
Loading…
Reference in a new issue