Skip to content
Snippets Groups Projects
Commit e4c84b9d authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Fix typos SLAPD_NEXTID_CHUCK/SLAPD_NEXTID_CHUNCK -> SLAPD_NEXTID_CHUNK

parent 01b96724
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment