X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcommands.cpp;h=35aada548955469b9104fbb8318f3e25938b47f0;hb=9b17aecc0d711b1345416c0510adb270399960a9;hp=d805a1f6591df580feb874adf6e82b4990747f12;hpb=44f42a13de52c8025942ddab42f51feb36821782;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/commands.cpp b/src/commands.cpp index d805a1f65..35aada548 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -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& 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&, FakeUser*) { return CMD_INVALID; } -