]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/overlays/overlays.c
Fix overlay aux_operational, add contextCSN as operational attribute
[openldap] / servers / slapd / overlays / overlays.c
index 3d7851bc8635553f425eb93701f15a705c1c40b0..76af46c1033b91fbd51d4e9f57dcaab179d2e23b 100644 (file)
@@ -23,7 +23,6 @@
 
 #include "slap.h"
 
-
 #if SLAPD_OVER_CHAIN == SLAPD_MOD_STATIC
 extern int chain_init();
 #endif
@@ -36,12 +35,24 @@ extern int dyngroup_init();
 #if SLAPD_OVER_LASTMOD == SLAPD_MOD_STATIC
 extern int lastmod_init();
 #endif
+#if SLAPD_OVER_PPOLICY == SLAPD_MOD_STATIC
+extern int ppolicy_init();
+#endif
 #if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
 extern int pcache_init();
 #endif
+#if SLAPD_OVER_REFINT == SLAPD_MOD_STATIC
+extern int refint_init();
+#endif
 #if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
 extern int rwm_init();
 #endif
+#if SLAPD_OVER_SYNCPROV == SLAPD_MOD_STATIC
+extern int syncprov_init();
+#endif
+#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC
+extern int unique_init();
+#endif
 
 static struct {
        char *name;
@@ -59,11 +70,23 @@ static struct {
 #if SLAPD_OVER_LASTMOD == SLAPD_MOD_STATIC
        { "Last Modification", lastmod_init },
 #endif
+#if SLAPD_OVER_PPOLICY == SLAPD_MOD_STATIC
+       { "Password Policy", ppolicy_init },
+#endif
 #if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
        { "Proxy Cache", pcache_init },
 #endif
+#if SLAPD_OVER_REFINT == SLAPD_MOD_STATIC
+       { "Referential Integrity", refint_init },
+#endif
 #if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
        { "Rewrite/Remap", rwm_init },
+#endif
+#if SLAPD_OVER_SYNCPROV == SLAPD_MOD_STATIC
+       { "Syncrepl Provider", syncprov_init },
+#endif
+#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC
+       { "Attribute Uniqueness", unique_init },
 #endif
        { NULL, NULL }
 };
@@ -76,13 +99,8 @@ overlay_init(void)
        for ( i=0; funcs[i].name; i++ ) {
                rc = funcs[i].func();
                if ( rc ) {
-#ifdef NEW_LOGGING
-                       LDAP_LOG( BACKEND, ERR,
-               "%s overlay setup failed, err %d\n", funcs[i].name, rc, 0 );
-#else
                        Debug( LDAP_DEBUG_ANY,
                "%s overlay setup failed, err %d\n", funcs[i].name, rc, 0 );
-#endif
                        break;
                }
        }