diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-22 16:40:02 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-22 16:40:02 +0000 |
commit | 29b51086b95c86f812ac35ed7d3333f060ba5a8c (patch) | |
tree | 89aa4084906075fac71ebfbafd627ae2f60732fa /src/channels.cpp | |
parent | 6dd148749fc9f141746ad26b5c6d606560f448ad (diff) |
Nuke TIMESYNC from orbit \o/
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8998 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/channels.cpp')
-rw-r--r-- | src/channels.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index 2140a37ae..793bfb429 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -26,7 +26,7 @@ Channel::Channel(InspIRCd* Instance, const std::string &cname, time_t ts) : Serv (*(ServerInstance->chanlist))[cname.c_str()] = this; strlcpy(this->name, cname.c_str(), CHANMAX); - this->created = ts ? ts : ServerInstance->Time(true); + this->created = ts ? ts : ServerInstance->Time(); this->age = this->created; |