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 --- src/commands/cmd_invite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commands/cmd_invite.cpp') diff --git a/src/commands/cmd_invite.cpp b/src/commands/cmd_invite.cpp index ac9ad08f9..1a70fbe0e 100644 --- a/src/commands/cmd_invite.cpp +++ b/src/commands/cmd_invite.cpp @@ -33,7 +33,7 @@ CmdResult CommandInvite::Handle (const std::vector& parameters, Use if (parameters.size() == 3) { if (IS_LOCAL(user)) - timeout = time(NULL) + ServerInstance->Duration(parameters[2]); + timeout = ServerInstance->Time() + ServerInstance->Duration(parameters[2]); else timeout = ConvToInt(parameters[2]); } -- cgit v1.2.3