X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Firc-oper.c;h=f896098cfb94592a8652e0d1ccc87c1a74fe599f;hp=49768bc7e8f2b7974b0dd9c0048155bfdf7432c5;hb=a13bb78b1e7adf7c261ac427341c397ef9a6a1ed;hpb=61b7932e82383f03cf751ff246c0610ce30dfd20 diff --git a/src/ngircd/irc-oper.c b/src/ngircd/irc-oper.c index 49768bc7..f896098c 100644 --- a/src/ngircd/irc-oper.c +++ b/src/ngircd/irc-oper.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,12 +16,12 @@ * IRC operator commands */ -#include "imp.h" #include #include #include #include #include +#include #include "ngircd.h" #include "conn-func.h" @@ -30,7 +30,6 @@ #include "class.h" #include "parse.h" #include "irc.h" -#include "irc-macros.h" #include "irc-write.h" #include "lists.h" #include "log.h" @@ -38,9 +37,6 @@ #include "messages.h" #include "op.h" -#include -#include "irc-oper.h" - /** * Handle invalid received OPER command. * Log OPER attempt and send error message to client. @@ -48,7 +44,7 @@ static bool Bad_OperPass(CLIENT *Client, char *errtoken, char *errmsg) { - Log(LOG_WARNING, "Got invalid OPER from \"%s\": \"%s\" -- %s", + Log(LOG_WARNING, "Got invalid OPER from \"%s\": \"%s\" -- %s!", Client_Mask(Client), errtoken, errmsg); /* Increase penalty to slow down possible brute force attacks */ IRC_SetPenalty(Client, 10);