]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_whowas.c
Some fixes to .depend generation.
[irc/rqf/shadowircd.git] / modules / m_whowas.c
index 807f84a5d511f44364bd076a247b8a99d355f51e..5ad67dfd3132642b29fd1c09aaa9b10c4fbf05fc 100644 (file)
@@ -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"
@@ -64,6 +64,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 +119,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++;
                }