diff --git a/ChangeLog b/ChangeLog index 4592fce9..e45c9492 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ Anything we add/remove/fix/change is in here (even our rants) Fish (F), Mark (M), DeadNotBuried (D) =============================================================================== * NeoStats * Version 3.0.1 (F) + - Fix Inspircd module Glining *@* (Neo-428) (F) - Fix wrong prefixs for Inspircd Module as reported by Brain (F) - Some FreeBSD's define sig_atomic and we were not checking for it in configure. Fixed (F) diff --git a/modules/protocol/inspircd.c b/modules/protocol/inspircd.c index e155f902..ff7e6dfc 100644 --- a/modules/protocol/inspircd.c +++ b/modules/protocol/inspircd.c @@ -640,7 +640,7 @@ static void send_addline(const char type, const char *source, const char *mask, } void send_akill(const char *server, const char *host, const char *ident, const char *bot, const unsigned long length, const char *reason, const unsigned long ts) { char buf[BUFSIZE]; - ircsnprintf(buf, BUFSIZE, "%s@%s", ident, ident); + ircsnprintf(buf, BUFSIZE, "%s@%s", ident, host); send_addline('G', server, buf, bot, reason, length); } void send_sqline(const char *source, const char *mask, const char *reason) {