X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/581fa5c4999f82a176e39e4edad2990759c94f56..refs/tags/shadowircd-6.2.0-beta1:/modules/m_time.c?ds=sidebyside diff --git a/modules/m_time.c b/modules/m_time.c index 6940369..944b846 100644 --- a/modules/m_time.c +++ b/modules/m_time.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_time.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" @@ -35,7 +34,6 @@ #include "parse.h" #include "modules.h" #include "packet.h" -#include "sprintf_irc.h" static int m_time(struct Client *, struct Client *, int, const char **); static char *date(void); @@ -61,7 +59,6 @@ static const char *weekdays[] = { /* * m_time - * parv[0] = sender prefix * parv[1] = servername */ static int @@ -93,7 +90,7 @@ date(void) time_t lclock; int minswest; - lclock = CurrentTime; + lclock = rb_current_time(); gm = gmtime(&lclock); memcpy((void *) &gmbuf, (void *) gm, sizeof(gmbuf)); gm = &gmbuf;