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

load_extension was referenced unconditionally, but is only defined

in extended.c if SLAPD_EXTERNAL_EXTENSIONS is defined. Add #ifdef here.
parent 59dc262d
Branches
Tags
No related merge requests found
......@@ -14,10 +14,12 @@ struct module_regtable_t {
char *type;
int (*proc)(const void *module, const char *file_name);
} module_regtable[] = {
{ "null", load_null },
{ "extension", load_extension },
{ NULL, NULL }
};
{ "null", load_null },
#ifdef SLAPD_EXTERNAL_EXTENSIONS
{ "extension", load_extension },
#endif
{ NULL, NULL }
};
typedef struct module_loaded_t {
struct module_loaded_t *next;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment