From 4442ab4f41c1fe161f61b7561dbb55cc5135d7b3 Mon Sep 17 00:00:00 2001 From: "Kevin L. Mitchell" Date: Sun, 24 Feb 2002 19:59:41 +0000 Subject: [PATCH] Author: R33D33R (by way of Kev ) Log message: This patch removes the extra : in the remote connect msg. !H12.PartyNet.Org! * :Remote CONNECT Oslo* 4400 from R33D33R becomes !H12.PartyNet.Org! * Remote CONNECT Oslo* 4400 from R33D33R (pull-up from u2_10_11 branch) git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@654 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- ChangeLog | 4 ++++ ircd/m_connect.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index fa7b64d..1af5a05 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-02-22 Reed Loden + + * ircd/m_connect.c: Removed an extra : in remote connect message. + 2002-02-19 Joseph Bongaarts * ircd/whocmds.c: Local opers should also be able to diff --git a/ircd/m_connect.c b/ircd/m_connect.c index 8c8e7ed..2fc7ec9 100644 --- a/ircd/m_connect.c +++ b/ircd/m_connect.c @@ -196,7 +196,7 @@ int ms_connect(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) * Notify all operators about remote connect requests */ sendwallto_group_butone(&me, WALL_WALLOPS, 0, - ":Remote CONNECT %s %s from %s", parv[1], + "Remote CONNECT %s %s from %s", parv[1], parv[2] ? parv[2] : "", get_client_name(sptr, HIDE_IP)); log_write(LS_NETWORK, L_INFO, 0, "CONNECT From %C : %s %s", sptr, parv[1], -- 2.20.1