Skip to content
Snippets Groups Projects
Commit 57722288 authored by Howard Chu's avatar Howard Chu
Browse files

Add valsort

parent 22527540
No related branches found
No related tags found
No related merge requests found
......@@ -65,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;
......@@ -111,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 }
};
......
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