From c7949f3c54b84f24b39813094c4ad0154f57184b Mon Sep 17 00:00:00 2001 From: Joseph Bongaarts Date: Tue, 19 Feb 2002 23:29:53 +0000 Subject: [PATCH] Author: Ghostwolf 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 | 2 ++ ircd/m_kill.c | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index c260aa7..fa7b64d 100644 --- 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 * ircd/ircd.c: Updated "No such file" error message. diff --git a/ircd/m_kill.c b/ircd/m_kill.c index 521ea64..34e1a5a 100644 --- a/ircd/m_kill.c +++ b/ircd/m_kill.c @@ -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 } /* -- 2.20.1