summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/inspircd.cpp1
-rw-r--r--src/modules/m_spanningtree/treeserver.cpp1
-rw-r--r--src/snomasks.cpp5
3 files changed, 7 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 114d38969..17aa0c933 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -652,6 +652,7 @@ int InspIRCd::Run()
{
FOREACH_MOD_I(this,I_OnBackgroundTimer,OnBackgroundTimer(TIME));
Timers->TickMissedTimers(TIME);
+ SNO->FlushSnotices();
}
#ifndef WIN32
/* Same change as in cmd_stats.cpp, use RUSAGE_SELF rather than '0' -- Om */
diff --git a/src/modules/m_spanningtree/treeserver.cpp b/src/modules/m_spanningtree/treeserver.cpp
index 3e13526aa..64f01e83c 100644
--- a/src/modules/m_spanningtree/treeserver.cpp
+++ b/src/modules/m_spanningtree/treeserver.cpp
@@ -133,6 +133,7 @@ std::string& TreeServer::GetID()
void TreeServer::SetID(const std::string &id)
{
+ ServerInstance->Log(DEBUG, "Setting SID to " + id);
sid = id;
server_hash::iterator iter = Utils->sidlist.find(sid);
if (iter == Utils->sidlist.end())
diff --git a/src/snomasks.cpp b/src/snomasks.cpp
index dea7cc446..88714cf2d 100644
--- a/src/snomasks.cpp
+++ b/src/snomasks.cpp
@@ -27,6 +27,11 @@ SnomaskManager::~SnomaskManager()
{
}
+void SnomaskManager::FlushSnotices()
+{
+
+}
+
bool SnomaskManager::EnableSnomask(char letter, const std::string &type)
{
if (SnoMasks.find(letter) == SnoMasks.end())