Skip to content
Snippets Groups Projects
Commit 0de176e8 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Add bi->bi_entry_get_rw.

parent 17afb33c
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
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