mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
Tweak MDB_val to match struct berval
This commit is contained in:
parent
985f765dc5
commit
af70c0d9ce
@ -43,8 +43,8 @@ typedef struct MDB_env MDB_env;
|
|||||||
typedef unsigned int MDB_dbi;
|
typedef unsigned int MDB_dbi;
|
||||||
|
|
||||||
typedef struct MDB_val {
|
typedef struct MDB_val {
|
||||||
void *mv_data;
|
|
||||||
size_t mv_size;
|
size_t mv_size;
|
||||||
|
void *mv_data;
|
||||||
} MDB_val;
|
} MDB_val;
|
||||||
|
|
||||||
typedef int (MDB_cmp_func)(const MDB_val *a, const MDB_val *b);
|
typedef int (MDB_cmp_func)(const MDB_val *a, const MDB_val *b);
|
||||||
|
Loading…
Reference in New Issue
Block a user