X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/9f6bbe3cf9c786c5089bfd605315aed5268e8974..ac408af6cba5a230c66186d4389e60766c3a74a4:/modules/m_whowas.c diff --git a/modules/m_whowas.c b/modules/m_whowas.c index 807f84a..6007361 100644 --- a/modules/m_whowas.c +++ b/modules/m_whowas.c @@ -29,7 +29,7 @@ #include "client.h" #include "common.h" #include "hash.h" -#include "irc_string.h" +#include "match.h" #include "ircd.h" #include "ircd_defs.h" #include "numeric.h" @@ -53,7 +53,6 @@ DECLARE_MODULE_AV1(whowas, NULL, NULL, whowas_clist, NULL, NULL, "$Revision: 171 /* ** m_whowas -** parv[0] = sender prefix ** parv[1] = nickname queried */ static int @@ -64,6 +63,7 @@ m_whowas(struct Client *client_p, struct Client *source_p, int parc, const char int max = -1, found = 0; char *p; const char *nick; + char tbuf[26]; static time_t last_used = 0L; @@ -118,7 +118,7 @@ m_whowas(struct Client *client_p, struct Client *source_p, int parc, const char sendto_one_numeric(source_p, RPL_WHOISSERVER, form_str(RPL_WHOISSERVER), temp->name, temp->servername, - myctime(temp->logoff)); + rb_ctime(temp->logoff, tbuf, sizeof(tbuf))); cur++; found++; }