]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Streamline punctuation of log messages
authorAlexander Barton <alex@barton.de>
Sat, 1 Feb 2014 23:27:03 +0000 (00:27 +0100)
committerAlexander Barton <alex@barton.de>
Sat, 1 Feb 2014 23:27:03 +0000 (00:27 +0100)
See commit d38d153f for details.

src/ngircd/op.c

index 71e7cbcec778ae3e65a266846dfa655e04f73cd9..868c17ae5b880509dc191d808f1fe3f3d541bf5b 100644 (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));