mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Forgot continuation key prefix
This commit is contained in:
parent
ba044208a6
commit
4189b89d7a
@ -23,6 +23,8 @@ static void cont_alloc( Datum cont, Datum key )
|
||||
cont.dsize = 1 + sizeof(ID) + key.dsize;
|
||||
cont.dptr = ch_malloc( cont.dsize );
|
||||
|
||||
* (unsigned char *) cont.dptr = SLAP_INDEX_CONT_PREFIX;
|
||||
|
||||
memcpy( &((unsigned char *)cont.dptr)[1 + sizeof(ID)],
|
||||
key.dptr, key.dsize );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user