From 25f45518d22a7164fe11a2361b9b5a2ed57e2777 Mon Sep 17 00:00:00 2001 From: pk910 Date: Sun, 14 Aug 2011 16:55:35 +0200 Subject: [PATCH 1/1] fixed ircd crashing when using /whowas --- ircd/m_whowas.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ircd/m_whowas.c b/ircd/m_whowas.c index 72594da..3aca61c 100644 --- a/ircd/m_whowas.c +++ b/ircd/m_whowas.c @@ -144,7 +144,8 @@ int m_whowas(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) (feature_bool(FEAT_HIS_WHOIS_SERVERNAME) && !IsOper(sptr)) ? feature_str(FEAT_HIS_SERVERNAME) : temp->servername, - myctime(temp->logoff)); + myctime(temp->logoff), + "","*"); if (temp->away) send_reply(sptr, RPL_AWAY, temp->name, temp->away); cur++; -- 2.20.1