diff options
Diffstat (limited to 'modules/m_stats.c')
-rw-r--r-- | modules/m_stats.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/m_stats.c b/modules/m_stats.c index 0a6f78f..32b0582 100644 --- a/modules/m_stats.c +++ b/modules/m_stats.c @@ -642,9 +642,11 @@ stats_hubleaf(struct Client *source_p, int parc, char *parv[]) static const char * show_iline_prefix(const struct Client *sptr, const struct MaskItem *conf) { - static char prefix_of_host[USERLEN + 14]; + static char prefix_of_host[USERLEN + 15]; char *prefix_ptr = prefix_of_host; + if (IsConfWebIRC(conf)) + *prefix_ptr++ = '<'; if (IsNoTilde(conf)) *prefix_ptr++ = '-'; if (IsLimitIp(conf)) |