]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operlog.cpp
dz is determined to crash your ircd :P
[user/henk/code/inspircd.git] / src / modules / m_operlog.cpp
index e617c47e03b43890d9c17df0b953aaaf7d598827..b02689704e8beed68dc59861ff503f3295d0f664 100644 (file)
  * ---------------------------------------------------
  */
 
-#include "inspircd.h" 
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
+#include "inspircd.h"
 
 /* $ModDesc: A module which logs all oper commands to the ircd log at default loglevel. */
 
@@ -51,7 +48,7 @@ class ModuleOperLog : public Module
                if ((IS_OPER(user)) && (IS_LOCAL(user)) && (user->HasPermission(command)))
                {
                        command_t* thiscommand = ServerInstance->Parser->GetHandler(command);
-                       if ((thiscommand) && (thiscommand->flags_needed = 'o'))
+                       if ((thiscommand) && (thiscommand->flags_needed == 'o'))
                        {
                                std::string plist;
                                for (int j = 0; j < pcnt; j++)
@@ -72,29 +69,4 @@ class ModuleOperLog : public Module
 };
  
  
-/******************************************************************************************************/
-class ModuleOperLogFactory : public ModuleFactory
-{
- public:
-       ModuleOperLogFactory()
-       {
-       }
-       ~ModuleOperLogFactory()
-       {
-       }
-       virtual Module * CreateModule(InspIRCd* Me)
-       {
-               return new ModuleOperLog(Me);
-       }
-};
-extern "C" DllExport void * init_module( void )
-{
-       return new ModuleOperLogFactory;
-}
-
+MODULE_INIT(ModuleOperLog)