When sending an error use the IRC_WriteErrClient() variant

This ensures that all errors have a 2 second penalty.
This commit is contained in:
Federico G. Schwindt 2013-11-07 10:45:34 +00:00
parent 925b4de298
commit 00249f3c80
1 changed files with 2 additions and 2 deletions

View File

@ -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); \