]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - src/whowas.c
Branch merge.
[irc/rqf/shadowircd.git] / src / whowas.c
index 1f7cd75a22e10f961a745dce3842f34a3748501d..4e31df7b51d3fbe252b467c07e3ec9a06ee188a8 100644 (file)
@@ -72,7 +72,7 @@ void add_history(struct Client *client_p, int online)
                del_whowas_from_list(&WHOWASHASH[who->hashv], who);
        }
        who->hashv = hash_whowas_name(client_p->name);
-       who->logoff = CurrentTime;
+       who->logoff = rb_current_time();
        /*
         * NOTE: strcpy ok here, the sizes in the client struct MUST
         * match the sizes in the whowas struct
@@ -118,7 +118,7 @@ struct Client *get_history(const char *nick, time_t timelimit)
        struct Whowas *temp;
        int blah;
 
-       timelimit = CurrentTime - timelimit;
+       timelimit = rb_current_time() - timelimit;
        blah = hash_whowas_name(nick);
        temp = WHOWASHASH[blah];
        for (; temp; temp = temp->next)