Commit Diff
Diff:
20b52fe33dc3387d50790ed6da8c47c34277527a
6496fa46554ce099a451eac338090bd6fe6554e1
Commit:
6496fa46554ce099a451eac338090bd6fe6554e1
Tree:
efe9d1f1ee9f89e7b6166dab9c6180b5cb71fb33
Author:
Alexander Barton <alex@barton.de>
Committer:
Alexander Barton <alex@barton.de>
Date:
Sat Feb 1 23:27:03 2014 UTC
Message:
Streamline punctuation of log messages See commit d38d153f for details.
blob - 71e7cbcec778ae3e65a266846dfa655e04f73cd9
blob + 868c17ae5b880509dc191d808f1fe3f3d541bf5b
--- src/ngircd/op.c
+++ src/ngircd/op.c
@@ -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));
IRCNow