Module: ngircd.git Branch: master Commit: 771e539c18669d6c20b557be79675b94ca191c59 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=771e5...
Author: Alexander Barton alex@barton.de Date: Thu Aug 1 00:24:10 2013 +0200
Show IRC Operator name when logging a successful OPER command
---
src/ngircd/irc-oper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/ngircd/irc-oper.c b/src/ngircd/irc-oper.c index 237107f..29953a1 100644 --- a/src/ngircd/irc-oper.c +++ b/src/ngircd/irc-oper.c @@ -98,8 +98,8 @@ IRC_OPER( CLIENT *Client, REQUEST *Req )
if (!Client_OperByMe(Client)) Log(LOG_NOTICE|LOG_snotice, - "Got valid OPER from "%s", user is an IRC operator now.", - Client_Mask(Client)); + "Got valid OPER for "%s" from "%s", user is an IRC operator now.", + Req->argv[0], Client_Mask(Client));
Client_SetOperByMe(Client, true); return IRC_WriteStrClient(Client, RPL_YOUREOPER_MSG, Client_ID(Client));