summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-06-22 13:29:29 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-06-22 13:29:29 +0000
commitb5b8dd7e4f23fb65c29b967d0db6743ef6ad1a74 (patch)
tree8ba1a1bbf64b6959c3c852fad7ae5ba4deae1924
parent6183f8901da3a7272271dc04d7d5d0ab2f0bbd6a (diff)
- m_stats.c:stats_tstats(): prefix "/stats t" reply with 't' instead of 'T',
as "/stats T" reports configured motd{} blocks git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@4038 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r--modules/m_stats.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/modules/m_stats.c b/modules/m_stats.c
index 1be798e..23dea16 100644
--- a/modules/m_stats.c
+++ b/modules/m_stats.c
@@ -1200,32 +1200,32 @@ stats_tstats(struct Client *source_p, int parc, char *parv[])
sp->is_ni += dlink_list_length(&unknown_list);
- sendto_one(source_p, ":%s %d %s T :accepts %u refused %u",
+ sendto_one(source_p, ":%s %d %s t :accepts %u refused %u",
me.name, RPL_STATSDEBUG, source_p->name, sp->is_ac, sp->is_ref);
- sendto_one(source_p, ":%s %d %s T :unknown commands %u prefixes %u",
+ sendto_one(source_p, ":%s %d %s t :unknown commands %u prefixes %u",
me.name, RPL_STATSDEBUG, source_p->name, sp->is_unco, sp->is_unpf);
- sendto_one(source_p, ":%s %d %s T :nick collisions %u unknown closes %u",
+ sendto_one(source_p, ":%s %d %s t :nick collisions %u unknown closes %u",
me.name, RPL_STATSDEBUG, source_p->name, sp->is_kill, sp->is_ni);
- sendto_one(source_p, ":%s %d %s T :wrong direction %u empty %u",
+ sendto_one(source_p, ":%s %d %s t :wrong direction %u empty %u",
me.name, RPL_STATSDEBUG, source_p->name, sp->is_wrdi, sp->is_empt);
- sendto_one(source_p, ":%s %d %s T :numerics seen %u",
+ sendto_one(source_p, ":%s %d %s t :numerics seen %u",
me.name, RPL_STATSDEBUG, source_p->name, sp->is_num);
- sendto_one(source_p, ":%s %d %s T :auth successes %u fails %u",
+ sendto_one(source_p, ":%s %d %s t :auth successes %u fails %u",
me.name, RPL_STATSDEBUG, source_p->name, sp->is_asuc, sp->is_abad);
- sendto_one(source_p, ":%s %d %s T :Client Server",
+ sendto_one(source_p, ":%s %d %s t :Client Server",
me.name, RPL_STATSDEBUG, source_p->name);
- sendto_one(source_p, ":%s %d %s T :connected %u %u",
+ sendto_one(source_p, ":%s %d %s t :connected %u %u",
me.name, RPL_STATSDEBUG, source_p->name,
(unsigned int)sp->is_cl,
(unsigned int)sp->is_sv);
- sendto_one(source_p, ":%s %d %s T :bytes sent %llu %llu",
+ sendto_one(source_p, ":%s %d %s t :bytes sent %llu %llu",
me.name, RPL_STATSDEBUG, source_p->name,
sp->is_cbs, sp->is_sbs);
- sendto_one(source_p, ":%s %d %s T :bytes recv %llu %llu",
+ sendto_one(source_p, ":%s %d %s t :bytes recv %llu %llu",
me.name, RPL_STATSDEBUG, source_p->name,
sp->is_cbr, sp->is_sbr);
- sendto_one(source_p, ":%s %d %s T :time connected %u %u",
+ sendto_one(source_p, ":%s %d %s t :time connected %u %u",
me.name, RPL_STATSDEBUG, source_p->name,
(unsigned int)sp->is_cti,
(unsigned int)sp->is_sti);