]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_info.c
myctime -> rb_ctime
[irc/rqf/shadowircd.git] / modules / m_info.c
index 3916eaeb9ab507c1409247a55888945315e50e5c..470ded5aa0369e3d567dfbd9308c92f170c85b92 100644 (file)
@@ -670,13 +670,14 @@ send_info_text(struct Client *source_p)
 static void
 send_birthdate_online_time(struct Client *source_p)
 {
+       char tbuf[26]; /* this needs to be 26 - see ctime_r manpage */
        sendto_one(source_p, ":%s %d %s :Birth Date: %s, compile # %s",
                   get_id(&me, source_p), RPL_INFO, 
                   get_id(source_p, source_p), creation, generation);
 
        sendto_one(source_p, ":%s %d %s :On-line since %s",
                   get_id(&me, source_p), RPL_INFO, 
-                  get_id(source_p, source_p), myctime(startup_time));
+                  get_id(source_p, source_p), rb_ctime(startup_time, tbuf, sizeof(tbuf)));
 }
 
 /*