diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-07 20:42:18 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-07 20:42:18 +0000 |
commit | 233402b05c036aeb396af6ee27bf43f7405adb97 (patch) | |
tree | 61a4cddc05b8f814aa8bedd9436d0403d764ae31 /src/modules/m_devoice.cpp | |
parent | 7548a18e4c2fa474ec4bd370c483bd991fafaa00 (diff) |
The segfaults on missing init_module symbol are now gone, and hopefully not coming back!
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4772 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_devoice.cpp')
-rw-r--r-- | src/modules/m_devoice.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/modules/m_devoice.cpp b/src/modules/m_devoice.cpp index 346132eaa..b4ba9f117 100644 --- a/src/modules/m_devoice.cpp +++ b/src/modules/m_devoice.cpp @@ -63,7 +63,6 @@ class ModuleDeVoice : public Module public: ModuleDeVoice(Server* Me) : Module::Module(Me) { - log(DEBUG,"ModuleDeVoice constructor"); Srv = Me; mycommand = new cmd_devoice(); Srv->AddCommand(mycommand); @@ -93,7 +92,6 @@ class ModuleDeVoiceFactory : public ModuleFactory virtual Module * CreateModule(Server* Me) { - log(DEBUG,"ModuleDevoiceFactory::CreateModule()"); return new ModuleDeVoice(Me); } |