]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_time.c
Allow /ojoin !#channel/%#channel, if admin/halfop are enabled.
[irc/rqf/shadowircd.git] / modules / m_time.c
index 69403699d83f8ff77435fa28d00098a3eae6d35f..81031ddc286245dc3208fb037a1b1b5a0aeaa19c 100644 (file)
@@ -35,7 +35,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 +60,6 @@ static const char *weekdays[] = {
 
 /*
  * m_time
- *      parv[0] = sender prefix
  *      parv[1] = servername
  */
 static int
@@ -93,7 +91,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;