aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Robin Burchell2012-04-14 14:56:47 -0700
committerGravatar Robin Burchell2012-04-14 14:56:47 -0700
commit207c6c290e5b752d562fdc0b121379d511a3dce8 (patch)
tree7ee913c0a90c11e641b034b65083f0b5d770f9aa /src/modules
parentMerge pull request #35 from pcarrier/insp20ldap (diff)
parentFix unused variables reported by the clang static analyzer. (diff)
downloadinspircd++-207c6c290e5b752d562fdc0b121379d511a3dce8.tar.gz
inspircd++-207c6c290e5b752d562fdc0b121379d511a3dce8.tar.bz2
inspircd++-207c6c290e5b752d562fdc0b121379d511a3dce8.zip
Merge pull request #53 from SaberUK/clang-analyze
[2.0] Fix unused variables reported by the clang static analyzer.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_spanningtree/fjoin.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp
index ea217b398..8846b2fbc 100644
--- a/src/modules/m_spanningtree/fjoin.cpp
+++ b/src/modules/m_spanningtree/fjoin.cpp
@@ -93,7 +93,6 @@ CmdResult CommandFJoin::Handle(const std::vector<std::string>& params, User *src
parameterlist param_list;
if (Utils->AnnounceTSChange)
chan->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :TS for %s changed from %lu to %lu", chan->name.c_str(), channel.c_str(), (unsigned long) ourTS, (unsigned long) TS);
- ourTS = TS;
// while the name is equal in case-insensitive compare, it might differ in case; use the remote version
chan->name = channel;
chan->age = TS;