]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/op.c
Log privilege violations and failed OPER as "error" and to &server
[ngircd-alex.git] / src / ngircd / op.c
index 4a1135502ab17e8546af32a875b8747c2fe0d766..cd62e1270c7e3945f92a31defde914037dfdb610 100644 (file)
@@ -40,12 +40,14 @@ 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_ERR|LOG_snotice,
+                   "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_ERR|LOG_snotice,
+                   "No privileges: client \"%s\", command \"%s\"!",
                    Client_Mask(Client), Req->command);
                return IRC_WriteErrClient(Client, ERR_NOPRIVILEGES_MSG,
                                          Client_ID(Client));