diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-11-01 17:02:25 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-11-01 17:02:25 +0000 |
commit | 643da892f1548ef18c84176255a990727ff5070b (patch) | |
tree | c40e7021e7e7f05b8cd86409f09606f259184693 | |
parent | b18d9c7187c692b073f396fb932a5e1a683f595e (diff) |
Fix a result of Tired Coding (tm)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10774 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_spanningtree/fjoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp index 8048f3604..d2c787eb4 100644 --- a/src/modules/m_spanningtree/fjoin.cpp +++ b/src/modules/m_spanningtree/fjoin.cpp @@ -77,8 +77,8 @@ bool TreeSocket::ForceJoin(const std::string &source, std::deque<std::string> &p if (created) { - ServerInstance->SNO->WriteToSnoMask('d', "Creation FJOIN recieved for %s, timestamp: %lu", chan->name.c_str(), (unsigned long)TS); chan = new Channel(ServerInstance, channel, TS); + ServerInstance->SNO->WriteToSnoMask('d', "Creation FJOIN recieved for %s, timestamp: %lu", chan->name.c_str(), (unsigned long)TS); } else { |