mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +08:00
load_extension was referenced unconditionally, but is only defined
in extended.c if SLAPD_EXTERNAL_EXTENSIONS is defined. Add #ifdef here.
This commit is contained in:
parent
59dc262dc4
commit
e9a246744e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user