commit 00249f3c805ec0b4564901dce0f3a7b0c20ce439 from: Federico G. Schwindt date: Thu Nov 07 10:45:34 2013 UTC When sending an error use the IRC_WriteErrClient() variant This ensures that all errors have a 2 second penalty. commit - 925b4de2981b55a279f28368446f0a862c621d5e commit + 00249f3c805ec0b4564901dce0f3a7b0c20ce439 blob - 5a7ec639ba4a935b5281a5a9181d66feeb8ac250 blob + dc18641d072f47b6220ecc08cca3d838240476ed --- src/ngircd/irc-macros.h +++ src/ngircd/irc-macros.h @@ -78,7 +78,7 @@ if (Req->argc < Min || Req->argc > Max) { \ else \ Sender = Client; \ if (!Sender) \ - return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG, \ + return IRC_WriteErrClient(Client, ERR_NOSUCHNICK_MSG, \ Client_ID(Client), Req->prefix); /** @@ -97,7 +97,7 @@ if (Req->argc < Min || Req->argc > Max) { \ if (!Target) \ Target = Client_SearchServer(Req->argv[Argc]); \ if (!Target) \ - return IRC_WriteStrClient(From, ERR_NOSUCHSERVER_MSG, \ + return IRC_WriteErrClient(From, ERR_NOSUCHSERVER_MSG, \ Client_ID(From), Req->argv[Argc]); \ if (Client_Type(Target) != CLIENT_SERVER) \ Target = Client_Introducer(Target); \