X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_operlevels.cpp;h=b062ae341e9a93d19248257e9f23c5cdeed5edb2;hb=dd501fba3fd7e5806186b79fa1d7c2b464884e69;hp=972f7844144e599bf351037478b1e7fca9525e4e;hpb=638381c529a2f19c699718234d689e54ad459c97;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_operlevels.cpp b/src/modules/m_operlevels.cpp index 972f78441..b062ae341 100644 --- a/src/modules/m_operlevels.cpp +++ b/src/modules/m_operlevels.cpp @@ -14,9 +14,6 @@ #include "inspircd.h" /* $ModDesc: Gives each oper type a 'level', cannot kill opers 'above' your level. */ - - - class ModuleOperLevels : public Module { private: @@ -44,7 +41,7 @@ class ModuleOperLevels : public Module virtual Version GetVersion() { - return Version(1,2,0,1,VF_VENDOR,API_VERSION); + return Version("$Id$", VF_VENDOR, API_VERSION); } virtual int OnKill(User* source, User* dest, const std::string &reason) @@ -57,7 +54,7 @@ class ModuleOperLevels : public Module for (int j =0; j < conf->Enumerate("type"); j++) { std::string typen = conf->ReadValue("type","name",j); - if (!strcmp(typen.c_str(),dest->oper)) + if (typen == dest->oper) { dest_level = conf->ReadInteger("type","level",j,true); break; @@ -66,7 +63,7 @@ class ModuleOperLevels : public Module for (int k =0; k < conf->Enumerate("type"); k++) { std::string typen = conf->ReadValue("type","name",k); - if (!strcmp(typen.c_str(),source->oper)) + if (typen == source->oper) { source_level = conf->ReadInteger("type","level",k,true); break; @@ -74,9 +71,9 @@ class ModuleOperLevels : public Module } if (dest_level > source_level) { - ServerInstance->SNO->WriteToSnoMask('A', "Oper %s (level %d) attempted to /kill a higher oper: %s (level %d): Reason: %s",source->nick,source_level,dest->nick,dest_level,reason.c_str()); - dest->WriteServ("NOTICE %s :Oper %s attempted to /kill you!",dest->nick,source->nick); - source->WriteNumeric(481, "%s :Permission Denied - Oper %s is a higher level than you",source->nick,dest->nick); + ServerInstance->SNO->WriteToSnoMask('A', "Oper %s (level %ld) attempted to /kill a higher oper: %s (level %ld): Reason: %s",source->nick.c_str(),source_level,dest->nick.c_str(),dest_level,reason.c_str()); + dest->WriteServ("NOTICE %s :Oper %s attempted to /kill you!",dest->nick.c_str(),source->nick.c_str()); + source->WriteNumeric(ERR_NOPRIVILEGES, "%s :Permission Denied - Oper %s is a higher level than you",source->nick.c_str(),dest->nick.c_str()); return 1; } }