From 84af5345c10e05b9ae20774943a4cb6a2cdac38d Mon Sep 17 00:00:00 2001 From: peavey Date: Fri, 9 Jan 2009 20:51:38 +0000 Subject: Remove channel::created as its unused and only serves to confuse (see last commit to m_check). As a bonus saves memory usage :p git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10955 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/channels.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/channels.cpp') diff --git a/src/channels.cpp b/src/channels.cpp index 0c698999d..7a42bccbb 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -25,8 +25,7 @@ Channel::Channel(InspIRCd* Instance, const std::string &cname, time_t ts) : Serv (*(ServerInstance->chanlist))[cname.c_str()] = this; this->name.assign(cname, 0, ServerInstance->Config->Limits.ChanMax); - this->created = ts ? ts : ServerInstance->Time(); - this->age = this->created; + this->age = ts ? ts : ServerInstance->Time(); maxbans = topicset = 0; modes.reset(); @@ -421,7 +420,7 @@ Channel* Channel::JoinUser(InspIRCd* Instance, User *user, const char* cn, bool } Channel* Channel::ForceChan(InspIRCd* Instance, Channel* Ptr, User* user, const std::string &privs, bool bursting) -{ +{ std::string nick = user->nick; bool silent = false; @@ -1198,4 +1197,3 @@ void Channel::RemoveAllPrefixes(User* user) prefixes.erase(n); } } - -- cgit v1.2.3