]> jfr.im git - irc/unrealircd/unrealircd.git/commitdiff
Index: Changes
authorwolfsage <redacted>
Sun, 10 Jun 2007 08:33:05 +0000 (08:33 +0000)
committerwolfsage <redacted>
Sun, 10 Jun 2007 08:33:05 +0000 (08:33 +0000)
===================================================================
RCS file: /home/cmunk/ircsystems/cvsroot/unreal/Changes,v
retrieving revision 1.1.1.1.2.1.2.1.2.2430
diff -u -r1.1.1.1.2.1.2.1.2.2430 Changes
--- Changes 10 Jun 2007 07:58:43 -0000 1.1.1.1.2.1.2.1.2.2430
+++ Changes 10 Jun 2007 08:33:01 -0000
@@ -1755,3 +1755,6 @@
 - #0001518 reported by Cnils regarding new WHO functionality: -c with
   no args now shows all users not in a channel if you are an IRCOp,
   and +c shows all users in at least 1 channel.
+- #0002451 reported by GSF19 regarding *** Q: %s tried to kick you, when
+  it should be *** q: %s. (Actually that's ugly too but at least it
+  matches the umode for now)

Changes
src/modules/m_kick.c

diff --git a/Changes b/Changes
index 146799c3893d4673e7b1f4c03c297f5e315177eb..e7a71cc956b7c3fa33916ee1b84bcdfd74e33881 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1755,3 +1755,6 @@ MOTDs
 - #0001518 reported by Cnils regarding new WHO functionality: -c with 
   no args now shows all users not in a channel if you are an IRCOp,
   and +c shows all users in at least 1 channel.
+- #0002451 reported by GSF19 regarding *** Q: %s tried to kick you, when 
+  it should be *** q: %s. (Actually that's ugly too but at least it
+  matches the umode for now)
index 42f76fc2893a2a9a6c5450e37c8da81e64aafd83..ba057c24acbd0d4040e737529f6f936ec4a97329 100644 (file)
@@ -166,7 +166,7 @@ CMD_FUNC(m_kick)
                                                           me.name, sptr->name, "KICK", 
                                                           errbuf);
                                                sendto_one(who,
-                                                   ":%s %s %s :*** Q: %s tried to kick you from channel %s (%s)",
+                                                   ":%s %s %s :*** q: %s tried to kick you from channel %s (%s)",
                                                    me.name, IsWebTV(who) ? "PRIVMSG" : "NOTICE", who->name,
                                                    parv[0],
                                                    chptr->chname, comment);