]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/overlays/overlays.c
Fix void* pointer arithmetic from ber_bvchr()
[openldap] / servers / slapd / overlays / overlays.c
index 73d30c808cc4a09225449f511092ca350e149b54..0f46ae2cf2841b44c02a02ea610cfba2aa01f02d 100644 (file)
@@ -26,9 +26,6 @@
 #if SLAPD_OVER_ACCESSLOG == SLAPD_MOD_STATIC
 extern int accesslog_init();
 #endif
-#if SLAPD_OVER_ALLOP == SLAPD_MOD_STATIC
-extern int allop_init();
-#endif
 #if SLAPD_OVER_DENYOP == SLAPD_MOD_STATIC
 extern int denyop_init();
 #endif
@@ -68,6 +65,9 @@ extern int translucent_init();
 #if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC
 extern int unique_init();
 #endif
+#if SLAPD_OVER_VALSORT == SLAPD_MOD_STATIC
+extern int valsort_init();
+#endif
 
 static struct {
        char *name;
@@ -76,9 +76,6 @@ static struct {
 #if SLAPD_OVER_ACCESSLOG == SLAPD_MOD_STATIC
        { "Access Log", accesslog_init },
 #endif
-#if SLAPD_OVER_ALLOP == SLAPD_MOD_STATIC
-       { "All Operational", allop_init },
-#endif
 #if SLAPD_OVER_DENYOP == SLAPD_MOD_STATIC
        { "Deny Operation", denyop_init },
 #endif
@@ -117,6 +114,9 @@ static struct {
 #endif
 #if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC
        { "Attribute Uniqueness", unique_init },
+#endif
+#if SLAPD_OVER_VALSORT == SLAPD_MOD_STATIC
+       { "Value Sorting", valsort_init },
 #endif
        { NULL, NULL }
 };