summaryrefslogtreecommitdiffstats
path: root/src/map.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/map.c b/src/map.c
index dfe8fc6..0caf00c 100644
--- a/src/map.c
+++ b/src/map.c
@@ -496,7 +496,12 @@ map_data_set_entry(struct plugin_state *state,
}
void
-map_init(struct plugin_state *state)
+map_startup(struct plugin_state *state)
{
- backend_init(state);
+ backend_startup(state);
+}
+void
+map_init(struct slapi_pblock *pb, struct plugin_state *state)
+{
+ backend_init(pb, state);
}