CurrentTime -> rb_currenttime();

This commit is contained in:
Valery Yatsko 2008-04-02 03:53:20 +04:00
parent b42e202d6b
commit e335494516
53 changed files with 194 additions and 198 deletions

View file

@ -63,7 +63,7 @@ m_lusers(struct Client *client_p, struct Client *source_p, int parc, const char
if (parc > 2)
{
if((last_used + ConfigFileEntry.pace_wait) > CurrentTime)
if((last_used + ConfigFileEntry.pace_wait) > rb_current_time())
{
/* safe enough to give this on a local connect only */
sendto_one(source_p, form_str(RPL_LOAD2HI),
@ -71,7 +71,7 @@ m_lusers(struct Client *client_p, struct Client *source_p, int parc, const char
return 0;
}
else
last_used = CurrentTime;
last_used = rb_current_time();
if(hunt_server(client_p, source_p, ":%s LUSERS %s :%s", 2, parc, parv) !=
HUNTED_ISME)