From 78f26492a65b438f5b87f1574ed7785fd77ae2f0 Mon Sep 17 00:00:00 2001 From: w00t Date: Sat, 1 Nov 2008 23:02:23 +0000 Subject: Second attempt at time() -> SI->Time(), now problems with the original were fixed. (SI::TIME was not initialised). Thanks Namegduf! (Please test, all, valdebug etc, report odd behaviour/warnings!) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10783 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/bancache.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/bancache.h') diff --git a/include/bancache.h b/include/bancache.h index b6e037f79..7771feb75 100644 --- a/include/bancache.h +++ b/include/bancache.h @@ -45,7 +45,7 @@ class CoreExport BanCacheHit : public classbase this->Type = type; this->Reason = reason; this->IP = ip; - this->Expiry = time(NULL) + 86400; // a day. this might seem long, but entries will be removed as glines/etc expire. + this->Expiry = ServerInstance->Time() + 86400; // a day. this might seem long, but entries will be removed as glines/etc expire. } // overridden to allow custom time @@ -55,7 +55,7 @@ class CoreExport BanCacheHit : public classbase this->Type = type; this->Reason = reason; this->IP = ip; - this->Expiry = time(NULL) + seconds; + this->Expiry = ServerInstance->Time() + seconds; } }; -- cgit v1.2.3