From f717c20dbb7214f392997d477835e71005e68f63 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Wed, 3 Dec 2008 22:54:30 +0100 Subject: [PATCH] As in shadowircd, increase buffer for /who status. Not necessary here but nice for consistency. --- modules/m_who.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/m_who.c b/modules/m_who.c index 65304c2..0b63a4b 100644 --- a/modules/m_who.c +++ b/modules/m_who.c @@ -437,7 +437,7 @@ do_who_on_channel(struct Client *source_p, struct Channel *chptr, static void do_who(struct Client *source_p, struct Client *target_p, struct membership *msptr, struct who_format *fmt) { - char status[5]; + char status[16]; char str[512], *p, *end; const char *q;