Streamline punctuation of log messages

See commit d38d153f for details.
This commit is contained in:
Alexander Barton 2014-02-02 00:27:03 +01:00
parent 20b52fe33d
commit 6496fa4655
1 changed files with 2 additions and 2 deletions

View File

@ -44,12 +44,12 @@ Op_NoPrivileges(CLIENT * Client, REQUEST * Req)
from = Client_Search(Req->prefix);
if (from) {
Log(LOG_NOTICE, "No privileges: client \"%s\" (%s), command \"%s\"",
Log(LOG_NOTICE, "No privileges: client \"%s\" (%s), command \"%s\"!",
Req->prefix, Client_Mask(Client), Req->command);
return IRC_WriteErrClient(from, ERR_NOPRIVILEGES_MSG,
Client_ID(from));
} else {
Log(LOG_NOTICE, "No privileges: client \"%s\", command \"%s\"",
Log(LOG_NOTICE, "No privileges: client \"%s\", command \"%s\"!",
Client_Mask(Client), Req->command);
return IRC_WriteErrClient(Client, ERR_NOPRIVILEGES_MSG,
Client_ID(Client));