From: Perry Lorier Date: Sun, 7 Sep 2008 02:10:22 +0000 (+0000) Subject: Author: Isomer X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=commitdiff_plain;h=74de0986e40ba8bf85d71e4b574aa6a109a08c10 Author: Isomer Log message: Remove the . at the end of the nick in kill messages to make it easier to cut and paste nicks. (Suggested by pryz) git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/branches/u2_10_12_branch@1876 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/ChangeLog b/ChangeLog index 8f1e198..44dc44f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-09-07 Perry Lorier + + * ircd/m_kill.c: Remove the . from the end of the nickname in kill + messages to make cut and pasting easier. + 2008-03-20 Michael Poole * ircd/ircd_string.c (ircd_aton_ip4): Reject strings with more diff --git a/ircd/m_kill.c b/ircd/m_kill.c index 9c4f0e0..b038bc8 100644 --- a/ircd/m_kill.c +++ b/ircd/m_kill.c @@ -119,7 +119,7 @@ static int do_kill(struct Client* cptr, struct Client* sptr, * have changed the target because of the nickname change. */ sendto_opmask_butone(0, IsServer(sptr) ? SNO_SERVKILL : SNO_OPERKILL, - "Received KILL message for %s. From %s Path: %s!%s %s", + "Received KILL message for %s from %s Path: %s!%s %s", get_client_name(victim, SHOW_IP), cli_name(sptr), inpath, path, msg); log_write_kill(victim, sptr, inpath, path, msg);