diff --git a/Changes b/Changes index cf6078a80..d7e8531b6 100644 --- a/Changes +++ b/Changes @@ -1273,3 +1273,4 @@ - Fixed desynch problem with +Q, reported by tabrisnet (#0002992). - Updated doc/coding-guidelines - Added bugs.* url to /info, was still showing some email address. +- Fixed forgotten operoverride logmessage (kick if chan +Q), reported in #2889. diff --git a/src/modules/m_kick.c b/src/modules/m_kick.c index e97f076fb..dfb9bcb9a 100644 --- a/src/modules/m_kick.c +++ b/src/modules/m_kick.c @@ -190,6 +190,9 @@ CMD_FUNC(m_kick) "*** OperOverride -- %s (%s@%s) KICK %s %s (%s)", sptr->name, sptr->user->username, sptr->user->realhost, chptr->chname, who->name, comment); + ircd_log(LOG_OVERRIDE,"OVERRIDE: %s (%s@%s) KICK %s %s (%s)", + sptr->name, sptr->user->username, sptr->user->realhost, + chptr->chname, who->name, comment); goto attack; /* No reason to continue.. */ } /* Store "who" access flags */