Author: Ghostwolf <foxxe@wtfs.net>
authorJoseph Bongaarts <foxxe@wtfs.net>
Tue, 19 Feb 2002 23:29:53 +0000 (23:29 +0000)
committerJoseph Bongaarts <foxxe@wtfs.net>
Tue, 19 Feb 2002 23:29:53 +0000 (23:29 +0000)
Log message:
Bug fix for HIS_KILLWHO

git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@651 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

ChangeLog
ircd/m_kill.c

index c260aa763e74d3d4435f4061745b7e57351ae909..fa7b64dfdf5b08359244657ee6aa7e0de80904a0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,8 @@
 
        * ircd/gline.c: Fix core bug in gline_find()
 
+       * ircd/m_kill.c: Bug fix for HIS_KILLWHO
+
 2002-02-19 John Buttery <john@io.com>
 
        * ircd/ircd.c: Updated "No such file" error message.
index 521ea64aefb7a8c108505df6373899ce02cf1f42..34e1a5ab0eb048b20f399fae37b0e21987862b63 100644 (file)
@@ -182,7 +182,11 @@ static int do_kill(struct Client* cptr, struct Client* sptr,
                   comment);
 #endif
   }
+#ifdef HEAD_IN_SAND_KILLWHO
+  return exit_client_msg(cptr, victim, &me, "Killed (%s)", comment);
+#else
   return exit_client_msg(cptr, victim, sptr, "Killed (%s)", comment);
+#endif
 }
 
 /*