mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
Add bi->bi_entry_get_rw.
This commit is contained in:
parent
17afb33c19
commit
0de176e874
@ -68,6 +68,20 @@ null_back_false( Operation *op, SlapReply *rs )
|
||||
}
|
||||
|
||||
|
||||
/* for overlays */
|
||||
int null_back_entry_get(
|
||||
Operation *op,
|
||||
struct berval *ndn,
|
||||
ObjectClass *oc,
|
||||
AttributeDescription *at,
|
||||
int rw,
|
||||
Entry **ent )
|
||||
{
|
||||
*ent = NULL;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
/* Slap tools */
|
||||
|
||||
static int
|
||||
@ -194,6 +208,8 @@ null_back_initialize( BackendInfo *bi )
|
||||
bi->bi_connection_init = 0;
|
||||
bi->bi_connection_destroy = 0;
|
||||
|
||||
bi->bi_entry_get_rw = null_back_entry_get;
|
||||
|
||||
bi->bi_tool_entry_open = null_tool_entry_open;
|
||||
bi->bi_tool_entry_close = null_tool_entry_close;
|
||||
bi->bi_tool_entry_first = null_tool_entry_next;
|
||||
|
Loading…
Reference in New Issue
Block a user