From: Alexander Barton Date: Sat, 1 Feb 2014 23:27:03 +0000 (+0100) Subject: Streamline punctuation of log messages X-Git-Tag: rel-22-rc1~52 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=6496fa46554ce099a451eac338090bd6fe6554e1;ds=sidebyside Streamline punctuation of log messages See commit d38d153f for details. --- diff --git a/src/ngircd/op.c b/src/ngircd/op.c index 71e7cbce..868c17ae 100644 --- a/src/ngircd/op.c +++ b/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));