]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-shell/init.c
Patch: back-shell/searchexample.* nitpicks (ITS#1816)
[openldap] / servers / slapd / back-shell / init.c
index b73c96648fff45980dae6e90f5f6742d2906e43d..d7add624f552cd0df738ecd4ccb63742ec8c0468 100644 (file)
@@ -1,4 +1,9 @@
 /* init.c - initialize shell backend */
+/* $OpenLDAP$ */
+/*
+ * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+ */
 
 #include "portable.h"
 
@@ -9,6 +14,21 @@
 #include "slap.h"
 #include "shell.h"
 
+#ifdef SLAPD_SHELL_DYNAMIC
+
+int back_shell_LTX_init_module(int argc, char *argv[]) {
+    BackendInfo bi;
+
+    memset( &bi, '\0', sizeof(bi) );
+    bi.bi_type = "shell";
+    bi.bi_init = shell_back_initialize;
+
+    backend_add(&bi);
+    return 0;
+}
+
+#endif /* SLAPD_SHELL_DYNAMIC */
+
 int
 shell_back_initialize(
     BackendInfo        *bi
@@ -35,9 +55,11 @@ shell_back_initialize(
        bi->bi_op_delete = shell_back_delete;
        bi->bi_op_abandon = shell_back_abandon;
 
-#ifdef SLAPD_ACLGROUPS
+       bi->bi_extended = 0;
+
        bi->bi_acl_group = 0;
-#endif
+       bi->bi_acl_attribute = 0;
+       bi->bi_chk_referrals = 0;
 
        bi->bi_connection_init = 0;
        bi->bi_connection_destroy = 0;