]> 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 295bc2b583dd310aace5ca2445296d1f96934db8..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,4 +69,4 @@ class ModuleOperLog : public Module
 };
  
  
-MODULE_INIT(ModuleOperLog);
+MODULE_INIT(ModuleOperLog)