diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-05-02 18:18:01 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-05-02 18:18:01 +0000 |
commit | 7d8f6fde6e8f3b22aeb280f673ae9e727954783f (patch) | |
tree | fb9bc8d93ca47f174142cc2cf3229ab78288e171 /src/modules | |
parent | 343ffe89409830e85e7895888468bbccd5fdd7a6 (diff) |
Remove an old debug log, and fix compile.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11348 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_alias.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index 04d43bcb8..b27a8f8f0 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -241,8 +241,6 @@ class ModuleAlias : public Module while (*(compare.c_str()) == ' ') compare.erase(compare.begin()); - ServerInstance->Logs->Log("FANTASY", DEBUG, "fantasy: compare is %s and safe is %s", compare.c_str(), safe.c_str()); - while (i != upperbound) { if (i->second.ChannelCommand) @@ -365,7 +363,7 @@ class ModuleAlias : public Module else { /* We don't want these in a user alias */ - SearchAndReplace(newline, std::string("$chan"), ""); + SearchAndReplace(newline, std::string("$chan"), std::string("")); } irc::tokenstream ss(newline); |