Add bi->bi_entry_get_rw.

This commit is contained in:
Hallvard Furuseth 2007-07-23 20:13:36 +00:00
parent 17afb33c19
commit 0de176e874

View File

@ -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;