summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/modules/m_chanlog.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_chanlog.cpp b/src/modules/m_chanlog.cpp
index bb5adf67c..8ba07d9ba 100644
--- a/src/modules/m_chanlog.cpp
+++ b/src/modules/m_chanlog.cpp
@@ -100,11 +100,10 @@ class ModuleChanLog : public Module
continue;
}
- for (std::string::const_iterator it = snomasks.begin(); it != snomasks.end(); i++)
+ for (std::string::const_iterator it = snomasks.begin(); it != snomasks.end(); it++)
{
logstreams.insert(std::make_pair(*it, channel));
ServerInstance->Logs->Log("m_chanlog", DEFAULT, "Logging %c to %s", *it, channel.c_str());
- it++;
}
}