diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-09 21:46:21 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-09 21:46:21 +0000 |
commit | 16ba90f0c61c810a900a1d630416d1d24914e134 (patch) | |
tree | b4c19babbf0265bd21b8a20b021eb8d7d33f7c59 /src/modules | |
parent | da61548438b900ad78bff98b47b7dc2dd2a92611 (diff) |
Fix merge FJOIN debug message
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11078 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_spanningtree/fjoin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp index 360e6d5c8..55c72c474 100644 --- a/src/modules/m_spanningtree/fjoin.cpp +++ b/src/modules/m_spanningtree/fjoin.cpp @@ -84,7 +84,8 @@ bool TreeSocket::ForceJoin(const std::string &source, std::deque<std::string> &p { time_t ourTS = chan->age; - ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN recieved for %s, ourTS: %lu, TS: %lu, difference: %lu", chan->name.c_str(), (unsigned long)TS, (unsigned long)TS, (unsigned long)ourTS - TS); + ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN recieved for %s, ourTS: %lu, TS: %lu, difference: %lu", + chan->name.c_str(), (unsigned long)ourTS, (unsigned long)TS, (unsigned long)ourTS - (unsigned long)TS); /* If our TS is less than theirs, we dont accept their modes */ if (ourTS < TS) { |