From: Attila Molnar Date: Wed, 18 Dec 2013 15:31:09 +0000 (+0100) Subject: m_spanningtree Fix clang warning and wrong operator in if X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=ba0802d8a8b173a559f149fefe9cd2b52a962c84;p=user%2Fhenk%2Fcode%2Finspircd.git m_spanningtree Fix clang warning and wrong operator in if --- diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 017f1c522..39ff222c5 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -589,7 +589,7 @@ void ModuleSpanningTree::OnUserPostNick(User* user, const std::string &oldnick) void ModuleSpanningTree::OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& excepts) { - if ((!IS_LOCAL(source) || source != ServerInstance->FakeClient)) + if ((!IS_LOCAL(source)) && (source != ServerInstance->FakeClient)) return; CmdBuilder params(source, "KICK"); diff --git a/src/modules/m_spanningtree/treesocket.h b/src/modules/m_spanningtree/treesocket.h index 097f60fbb..4f72ed006 100644 --- a/src/modules/m_spanningtree/treesocket.h +++ b/src/modules/m_spanningtree/treesocket.h @@ -89,7 +89,7 @@ struct CapabData */ class TreeSocket : public BufferedSocket { - class BurstState; + struct BurstState; std::string linkID; /* Description for this link */ ServerState LinkState; /* Link state */