diff options
Diffstat (limited to 'src/modules.c')
-rw-r--r-- | src/modules.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/modules.c b/src/modules.c index 23a5a0f..e8dc695 100644 --- a/src/modules.c +++ b/src/modules.c @@ -41,8 +41,10 @@ dlink_list modules_list = { NULL, NULL, 0 }; -static const char *unknown_ver = "<unknown>"; +static dlink_list mod_paths = { NULL, NULL, 0 }; +static dlink_list conf_modules = { NULL, NULL, 0 }; +static const char *unknown_ver = "<unknown>"; static const char *core_module_table[] = { "m_die.la", @@ -61,9 +63,6 @@ static const char *core_module_table[] = NULL }; -static dlink_list mod_paths = { NULL, NULL, 0 }; -static dlink_list conf_modules = { NULL, NULL, 0 }; - int modules_valid_suffix(const char *name) { |