X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/212380e3f42f585dc1ea927402252eb943f91f7b..16e0550f25f3474bdf9550d2ba979d2dbd695aa4:/modules/m_svinfo.c?ds=sidebyside diff --git a/modules/m_svinfo.c b/modules/m_svinfo.c index 9067a64..10f06eb 100644 --- a/modules/m_svinfo.c +++ b/modules/m_svinfo.c @@ -59,6 +59,7 @@ ms_svinfo(struct Client *client_p, struct Client *source_p, int parc, const char { signed int deltat; time_t theirtime; + char squitreason[120]; /* SVINFO isnt remote. */ if(source_p != client_p) @@ -70,7 +71,9 @@ ms_svinfo(struct Client *client_p, struct Client *source_p, int parc, const char sendto_realops_snomask(SNO_GENERAL, L_ALL, "Link %s dropped, wrong TS protocol version (%s,%s)", get_server_name(source_p, SHOW_IP), parv[1], parv[2]); - exit_client(source_p, source_p, source_p, "Incompatible TS version"); + snprintf(squitreason, sizeof squitreason, "Incompatible TS version (%s,%s)", + parv[1], parv[2]); + exit_client(source_p, source_p, source_p, squitreason); return 0; } @@ -92,13 +95,15 @@ ms_svinfo(struct Client *client_p, struct Client *source_p, int parc, const char "Link %s dropped, excessive TS delta" " (my TS=%ld, their TS=%ld, delta=%d)", log_client_name(source_p, SHOW_IP), (long) CurrentTime, (long) theirtime, deltat); - exit_client(source_p, source_p, source_p, "Excessive TS delta"); + snprintf(squitreason, sizeof squitreason, "Excessive TS delta (my TS=%ld, their TS=%ld, delta=%d)", + (long) CurrentTime, (long) theirtime, deltat); + exit_client(source_p, source_p, source_p, squitreason); return 0; } if(deltat > ConfigFileEntry.ts_warn_delta) { - sendto_realops_snomask(SNO_GENERAL, L_ALL, + sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "Link %s notable TS delta" " (my TS=%ld, their TS=%ld, delta=%d)", source_p->name, (long) CurrentTime, (long) theirtime, deltat);