]> jfr.im git - irc/quakenet/snircd-patchqueue.git/blob - servernameinconnect.patch
Remove topic_reveal.patch. This has been fixed in IRCU and ircu patch is correct...
[irc/quakenet/snircd-patchqueue.git] / servernameinconnect.patch
1 # HG changeset patch
2 # Parent 8f8f78e115b694139394b3cd4050dbfadc1c4ff0
3
4 diff -r 8f8f78e115b6 ircd/m_connect.c
5 --- a/ircd/m_connect.c Fri Jul 19 21:57:19 2013 +0100
6 +++ b/ircd/m_connect.c Fri Jul 19 21:59:17 2013 +0100
7 @@ -195,10 +195,10 @@
8 * Notify all operators about remote connect requests
9 */
10 sendwallto_group_butone(&me, WALL_WALLOPS, 0,
11 - "Remote CONNECT %s %s from %s", parv[1],
12 + "Remote CONNECT %s %s from %s", aconf->name,
13 parv[2] ? parv[2] : "",
14 get_client_name(sptr, HIDE_IP));
15 - log_write(LS_NETWORK, L_INFO, 0, "CONNECT From %C : %s %s", sptr, parv[1],
16 + log_write(LS_NETWORK, L_INFO, 0, "CONNECT From %C : %s %s", sptr, aconf->name,
17 parv[2] ? parv[2] : "");
18
19 if (connect_server(aconf, sptr)) {