X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/cc200171d7c40be3b204460f9c14d5d37e771866..ae42901c540b413a5064dbec9a566627b3a2967b:/modules/m_services.c diff --git a/modules/m_services.c b/modules/m_services.c index 899c1a3..af0e9c3 100644 --- a/modules/m_services.c +++ b/modules/m_services.c @@ -204,8 +204,8 @@ me_rsfnc(struct Client *client_p, struct Client *source_p, newts = atol(parv[3]); /* timestamp is older than 15mins, ignore it */ - if(newts < (CurrentTime - 900)) - newts = CurrentTime - 900; + if(newts < (rb_current_time() - 900)) + newts = rb_current_time() - 900; target_p->tsinfo = newts; @@ -270,7 +270,7 @@ me_nickdelay(struct Client *client_p, struct Client *source_p, int parc, const c add_nd_entry(parv[2]); nd = irc_dictionary_retrieve(nd_dict, parv[2]); if (nd != NULL) - nd->expire = CurrentTime + duration; + nd->expire = rb_current_time() + duration; } return 0;