mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-25 16:22:53 -05:00
Fix typos SLAPD_NEXTID_CHUCK/SLAPD_NEXTID_CHUNCK -> SLAPD_NEXTID_CHUNK
This commit is contained in:
parent
01b967244d
commit
e4c84b9d36
3 changed files with 3 additions and 3 deletions
|
|
@ -130,7 +130,7 @@ bdb2i_back_db_init_internal(
|
|||
|
||||
/* arrange to read nextid later (on first request for it) */
|
||||
li->li_nextid = NOID;
|
||||
#if SLAPD_NEXTID_CHUNCK > 1
|
||||
#if SLAPD_NEXTID_CHUNK > 1
|
||||
li->li_nextid_wrote = NOID
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ bdb2i_next_id_return( BackendDB *be, ID id )
|
|||
|
||||
li->li_nextid--;
|
||||
|
||||
#if !( SLAPD_NEXTID_CHUCK > 1 )
|
||||
#if !( SLAPD_NEXTID_CHUNK > 1 )
|
||||
(void) next_id_write( be, li->li_nextid );
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@ next_id_return( Backend *be, ID id )
|
|||
|
||||
li->li_nextid--;
|
||||
|
||||
#if !( SLAPD_NEXTID_CHUCK > 1 )
|
||||
#if !( SLAPD_NEXTID_CHUNK > 1 )
|
||||
(void) next_id_write( be, li->li_nextid );
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue