diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-11-24 03:05:47 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-11-24 04:05:06 +0100 |
commit | cbb06a27e9d06eadf3acf4c31be2b277ce0bc0be (patch) | |
tree | 98aabc1436efe1ee4fa3173f2e78ac6300c1e395 /src/modules/m_check.cpp | |
parent | 8f55577ce329ec6351a1962b71f9a4fbe76a3f22 (diff) |
m_check, m_namesx, m_timedbans Minor cleanup
Diffstat (limited to 'src/modules/m_check.cpp')
-rw-r--r-- | src/modules/m_check.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 994745422..07276445f 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -42,7 +42,7 @@ class CommandCheck : public Command return std::string(timebuf); } - void dumpExt(User* user, std::string checkstr, Extensible* ext) + void dumpExt(User* user, const std::string& checkstr, Extensible* ext) { std::stringstream dumpkeys; for(Extensible::ExtensibleStore::const_iterator i = ext->GetExtList().begin(); i != ext->GetExtList().end(); i++) @@ -199,7 +199,6 @@ class CommandCheck : public Command } irc::modestacker modestack(true); - std::string letter_b("b"); for(BanList::iterator b = targchan->bans.begin(); b != targchan->bans.end(); ++b) { modestack.Push('b', b->data); |