Skip to content
Snippets Groups Projects
Commit 47850fb3 authored by Howard Chu's avatar Howard Chu Committed by Quanah Gibson-Mount
Browse files

ITS#7170 fix Quick mode index generation

parent 9df27f92
No related branches found
No related tags found
No related merge requests found
......@@ -413,9 +413,6 @@ mdb_idl_insert_keys(
assert( id != NOID );
if ( slapMode & SLAP_TOOL_QUICK )
flag |= MDB_APPEND;
#ifndef MISALIGNED_OK
if (keys[0].bv_len & 0x03)
kbuf[1] = 0;
......@@ -493,6 +490,8 @@ mdb_idl_insert_keys(
}
} else {
/* There's room, just store it */
if ( slapMode & SLAP_TOOL_QUICK )
flag |= MDB_APPEND;
goto put1;
}
} else {
......
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