diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-11 17:34:41 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-11 17:34:41 +0000 |
commit | f4a54d2f96562e7ba54b45e976b3de1ab8f204df (patch) | |
tree | ace7c21f608e2b726e09b134d1a02ed955afce7f /src/modules.c | |
parent | a7e6544569aff97f362030000b72330b4fa2fa48 (diff) |
- Mostly style cleanups & whitespace changes
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@1996 82007160-df01-0410-b94d-b575c5fd34c7
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) { |