]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_testline.c
Prevent cork usage as charybdis doesn't have its support
[irc/rqf/shadowircd.git] / modules / m_testline.c
index ca5930b36b8193f38adc5a7ec6a60fe17120258b..53e698b347b7005e52f3f6af35e94664fe663d19 100644 (file)
@@ -30,7 +30,6 @@
  * $Id: m_testline.c 3303 2007-03-28 15:22:49Z jilles $
  */
 #include "stdinc.h"
-#include "tools.h"
 #include "send.h"
 #include "client.h"
 #include "modules.h"
@@ -82,7 +81,7 @@ mo_testline(struct Client *client_p, struct Client *source_p, int parc, const ch
                        sendto_one(source_p, form_str(RPL_TESTLINE),
                                        me.name, source_p->name,
                                        resv_p->hold ? 'q' : 'Q',
-                                       resv_p->hold ? (long) ((resv_p->hold - CurrentTime) / 60) : 0L,
+                                       resv_p->hold ? (long) ((resv_p->hold - rb_current_time()) / 60) : 0L,
                                        resv_p->name, resv_p->passwd);
                        /* this is a false positive, so make sure it isn't counted in stats q
                         * --nenolod
@@ -133,7 +132,7 @@ mo_testline(struct Client *client_p, struct Client *source_p, int parc, const ch
                                me.name, source_p->name,
                                (aconf->flags & CONF_FLAGS_TEMPORARY) ? 'd' : 'D',
                                (aconf->flags & CONF_FLAGS_TEMPORARY) ? 
-                                (long) ((aconf->hold - CurrentTime) / 60) : 0L, 
+                                (long) ((aconf->hold - rb_current_time()) / 60) : 0L, 
                                aconf->host, aconf->passwd);
 
                        return 0;
@@ -163,23 +162,23 @@ mo_testline(struct Client *client_p, struct Client *source_p, int parc, const ch
 
                if(aconf->status & CONF_KILL)
                {
-                       ircsnprintf(buf, sizeof(buf), "%s@%s", 
+                       rb_snprintf(buf, sizeof(buf), "%s@%s", 
                                        aconf->user, aconf->host);
                        sendto_one(source_p, form_str(RPL_TESTLINE),
                                me.name, source_p->name,
                                (aconf->flags & CONF_FLAGS_TEMPORARY) ? 'k' : 'K',
                                (aconf->flags & CONF_FLAGS_TEMPORARY) ? 
-                                (long) ((aconf->hold - CurrentTime) / 60) : 0L,
+                                (long) ((aconf->hold - rb_current_time()) / 60) : 0L,
                                buf, aconf->passwd);
                        return 0;
                }
                else if(aconf->status & CONF_GLINE)
                {
-                       ircsnprintf(buf, sizeof(buf), "%s@%s",
+                       rb_snprintf(buf, sizeof(buf), "%s@%s",
                                        aconf->user, aconf->host);
                        sendto_one(source_p, form_str(RPL_TESTLINE),
                                me.name, source_p->name,
-                               'G', (long) ((aconf->hold - CurrentTime) / 60),
+                               'G', (long) ((aconf->hold - rb_current_time()) / 60),
                                buf, aconf->passwd);
                        return 0;
                }
@@ -191,7 +190,7 @@ mo_testline(struct Client *client_p, struct Client *source_p, int parc, const ch
                sendto_one(source_p, form_str(RPL_TESTLINE),
                                me.name, source_p->name,
                                resv_p->hold ? 'q' : 'Q',
-                               resv_p->hold ? (long) ((resv_p->hold - CurrentTime) / 60) : 0L,
+                               resv_p->hold ? (long) ((resv_p->hold - rb_current_time()) / 60) : 0L,
                                resv_p->name, resv_p->passwd);
 
                /* this is a false positive, so make sure it isn't counted in stats q
@@ -231,7 +230,7 @@ mo_testgecos(struct Client *client_p, struct Client *source_p, int parc, const c
        sendto_one(source_p, form_str(RPL_TESTLINE),
                        me.name, source_p->name,
                        aconf->hold ? 'x' : 'X',
-                       aconf->hold ? (long) ((aconf->hold - CurrentTime) / 60) : 0L,
+                       aconf->hold ? (long) ((aconf->hold - rb_current_time()) / 60) : 0L,
                        aconf->name, aconf->passwd);
        return 0;
 }