diff options
author | Adam <Adam@anope.org> | 2011-04-25 03:16:57 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-05-16 04:07:56 -0400 |
commit | 076ebafa1b4cc935c466c615b94eaac415af9a67 (patch) | |
tree | dbc8b0f9e7b6f954569c13ad35598f5ebe8a081d /src/main.cpp | |
parent | 6922bd239c778e8f6f2081476ce20b9426c515ad (diff) |
Moved some global functions to be member functions and misc cleanup
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index fd3ab52d5..53e348e69 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -205,7 +205,7 @@ static void services_shutdown() FOREACH_MOD(I_OnShutdown, OnShutdown()); ModuleManager::UnloadAll(); /* just in case they weren't all removed at least run once */ - ModuleRunTimeDirCleanUp(); + ModuleManager::CleanupRuntimeDirectory(); } /*************************************************************************/ @@ -402,7 +402,7 @@ int main(int ac, char **av, char **envp) #endif /* Clean out the module runtime directory prior to running, just in case files were left behind during a previous run */ - ModuleRunTimeDirCleanUp(); + ModuleManager::CleanupRuntimeDirectory(); /* General initialization first */ Init(ac, av); |