From: Michael Poole Date: Sat, 13 Jan 2007 18:45:08 +0000 (+0000) Subject: Add channel name to PV message for redundant CREATE. X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=commitdiff_plain;h=94f8239bf4376884219473265829d0519d77c5b0 Add channel name to PV message for redundant CREATE. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/branches/u2_10_12_branch@1744 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/ChangeLog b/ChangeLog index edb1826..887ce4a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-13 Michael Poole + + * ircd/m_create.c (ms_create): Add channel name to the protocol + violation notice for a redundant CREATE. + 2006-01-13 Michael Poole * ircd/s_user.c (set_nick_name): Use user's account name rather diff --git a/ircd/m_create.c b/ircd/m_create.c index db21be8..df2085e 100644 --- a/ircd/m_create.c +++ b/ircd/m_create.c @@ -160,7 +160,7 @@ int ms_create(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) { /* Is the remote server confused? */ if (find_member_link(chptr, sptr)) { - protocol_violation(sptr, "%s tried to CREATE a channel already joined", cli_name(sptr)); + protocol_violation(sptr, "%s tried to CREATE a channel already joined (%s)", cli_name(sptr), chptr->chname); continue; }