diff options
Diffstat (limited to 'src/process.cpp')
-rw-r--r-- | src/process.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/process.cpp b/src/process.cpp index b9798cded..6430fac46 100644 --- a/src/process.cpp +++ b/src/process.cpp @@ -50,7 +50,7 @@ void Anope::Process(const Anope::string &buffer) static const Anope::string proto_name = ModuleManager::FindFirstOf(PROTOCOL) ? ModuleManager::FindFirstOf(PROTOCOL)->name : ""; MessageSource src(source); - + EventReturn MOD_RESULT; FOREACH_RESULT(OnMessage, MOD_RESULT, (src, command, params)); if (MOD_RESULT == EVENT_STOP) @@ -84,7 +84,7 @@ void IRCDProto::Parse(const Anope::string &buffer, Anope::string &source, Anope: } sep.GetToken(command); - + for (Anope::string token; sep.GetToken(token);) { if (token[0] == ':') @@ -107,4 +107,3 @@ Anope::string IRCDProto::Format(const Anope::string &source, const Anope::string else return message; } - |