]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands.cpp
Change all socketengine methods to be static
[user/henk/code/inspircd.git] / src / commands.cpp
index d805a1f6591df580feb874adf6e82b4990747f12..35aada548955469b9104fbb8318f3e25938b47f0 100644 (file)
@@ -21,8 +21,6 @@
  */
 
 
-/* $Core */
-
 #include "inspircd.h"
 #include "xline.h"
 #include "command_parse.h"
@@ -127,7 +125,7 @@ CmdResult SplitCommand::Handle(const std::vector<std::string>& parms, User* u)
                return HandleRemote(parms, IS_REMOTE(u));
        if (IS_SERVER(u))
                return HandleServer(parms, IS_SERVER(u));
-       ServerInstance->Logs->Log("COMMAND", DEFAULT, "Unknown user type in command (uuid=%s)!", u->uuid.c_str());
+       ServerInstance->Logs->Log("COMMAND", LOG_DEFAULT, "Unknown user type in command (uuid=%s)!", u->uuid.c_str());
        return CMD_INVALID;
 }
 
@@ -145,4 +143,3 @@ CmdResult SplitCommand::HandleServer(const std::vector<std::string>&, FakeUser*)
 {
        return CMD_INVALID;
 }
-