X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/f06c147c70cf72b40e4ec0ec3b5aca86662beb80..24335dd6a3a37b52b92911144ddd3b5a11f77280:/modules/core/m_squit.c diff --git a/modules/core/m_squit.c b/modules/core/m_squit.c index 9a2c2b7..587b851 100644 --- a/modules/core/m_squit.c +++ b/modules/core/m_squit.c @@ -64,7 +64,6 @@ static struct squit_parms *find_squit(struct Client *client_p, /* * mo_squit - SQUIT message handler - * parv[0] = sender prefix * parv[1] = server name * parv[2] = comment */ @@ -106,7 +105,6 @@ mo_squit(struct Client *client_p, struct Client *source_p, int parc, const char /* * ms_squit - SQUIT message handler - * parv[0] = sender prefix * parv[1] = server name * parv[2] = comment */ @@ -148,12 +146,7 @@ ms_squit(struct Client *client_p, struct Client *source_p, int parc, const char ":%s WALLOPS :Remote SQUIT %s from %s (%s)", me.id, target_p->name, source_p->name, comment); - sendto_server(NULL, NULL, NOCAPS, CAP_TS6, - ":%s WALLOPS :Remote SQUIT %s from %s (%s)", - me.name, target_p->name, source_p->name, comment); - - ilog(L_SERVER, "SQUIT From %s : %s (%s)", parv[0], target_p->name, comment); - + ilog(L_SERVER, "SQUIT From %s : %s (%s)", source_p->name, target_p->name, comment); } exit_client(client_p, target_p, source_p, comment); return 0;