summaryrefslogtreecommitdiff
path: root/src/modules/m_remove.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2013-04-07 22:23:25 +0100
committerPeter Powell <petpow@saberuk.com>2013-04-11 23:08:03 +0100
commit5c29c53f651fb0c513a50c9396e08ba340a6d2bf (patch)
treec00ab92b6ff6d002e6c40909587b146ba5e45612 /src/modules/m_remove.cpp
parent295b3e7ba15a228948358bd6f23591a9cb5bf5a8 (diff)
Convert ISUPPORT to use a map instead of a string.
Diffstat (limited to 'src/modules/m_remove.cpp')
-rw-r--r--src/modules/m_remove.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp
index d95c0c6c6..6f7c1c369 100644
--- a/src/modules/m_remove.cpp
+++ b/src/modules/m_remove.cpp
@@ -211,9 +211,9 @@ class ModuleRemove : public Module
ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
}
- virtual void On005Numeric(std::string &output)
+ virtual void On005Numeric(std::map<std::string, std::string>& tokens)
{
- output.append(" REMOVE");
+ tokens["REMOVE"];
}
virtual void OnRehash(User* user)