From ad3524174350633c25dc8a4e5ffbb7066c4b8cba Mon Sep 17 00:00:00 2001 From: w00t Date: Sun, 21 Sep 2008 12:56:03 +0000 Subject: Be consistent. Use ServerInstance in all places instead of 'Instance' in half. This has bugged me forever :p. I think I got all of extra/ too.. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10579 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spanningtree/fmode.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/modules/m_spanningtree/fmode.cpp') diff --git a/src/modules/m_spanningtree/fmode.cpp b/src/modules/m_spanningtree/fmode.cpp index 2ab370170..d8e2342d5 100644 --- a/src/modules/m_spanningtree/fmode.cpp +++ b/src/modules/m_spanningtree/fmode.cpp @@ -35,7 +35,7 @@ bool TreeSocket::ForceMode(const std::string &source, std::deque &p std::string sourceserv; /* Are we dealing with an FMODE from a user, or from a server? */ - User* who = this->Instance->FindNick(source); + User* who = this->ServerInstance->FindNick(source); if (who) { /* FMODE from a user, set sourceserv to the users server name */ @@ -44,7 +44,7 @@ bool TreeSocket::ForceMode(const std::string &source, std::deque &p else { /* FMODE from a server, use a fake user to receive mode feedback */ - who = this->Instance->FakeClient; + who = this->ServerInstance->FakeClient; smode = true; /* Setting this flag tells us it is a server mode*/ sourceserv = source; /* Set sourceserv to the actual source string */ } @@ -68,7 +68,7 @@ bool TreeSocket::ForceMode(const std::string &source, std::deque &p } /* Extract the TS value of the object, either User or Channel */ - User* dst = this->Instance->FindNick(params[0]); + User* dst = this->ServerInstance->FindNick(params[0]); Channel* chan = NULL; time_t ourTS = 0; @@ -78,7 +78,7 @@ bool TreeSocket::ForceMode(const std::string &source, std::deque &p } else { - chan = this->Instance->FindChan(params[0]); + chan = this->ServerInstance->FindChan(params[0]); if (chan) { ourTS = chan->age; @@ -90,8 +90,8 @@ bool TreeSocket::ForceMode(const std::string &source, std::deque &p if (!TS) { - Instance->Logs->Log("m_spanningtree",DEFAULT,"*** BUG? *** TS of 0 sent to FMODE. Are some services authors smoking craq, or is it 1970 again?. Dropped."); - Instance->SNO->WriteToSnoMask('d', "WARNING: The server %s is sending FMODE with a TS of zero. Total craq. Mode was dropped.", sourceserv.c_str()); + ServerInstance->Logs->Log("m_spanningtree",DEFAULT,"*** BUG? *** TS of 0 sent to FMODE. Are some services authors smoking craq, or is it 1970 again?. Dropped."); + ServerInstance->SNO->WriteToSnoMask('d', "WARNING: The server %s is sending FMODE with a TS of zero. Total craq. Mode was dropped.", sourceserv.c_str()); return true; } @@ -101,11 +101,11 @@ bool TreeSocket::ForceMode(const std::string &source, std::deque &p { if (smode) { - this->Instance->SendMode(modelist, who); + this->ServerInstance->SendMode(modelist, who); } else { - this->Instance->CallCommandHandler("MODE", modelist, who); + this->ServerInstance->CallCommandHandler("MODE", modelist, who); } /* HOT POTATO! PASS IT ON! */ Utils->DoOneToAllButSender(source,"FMODE",params,sourceserv); -- cgit v1.2.3