summaryrefslogtreecommitdiff
path: root/src/modules/m_namesx.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-18 23:54:33 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-18 23:54:33 +0000
commit525eeb51a52ca9dbd001f0897222f6e5a3dccfb1 (patch)
tree971f1c206b59b12baa41d1cf476ecf385aa98e57 /src/modules/m_namesx.cpp
parent9a2481ebf1109adc4b626414108d92674793cd5d (diff)
Crash fixes from nenolod
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9126 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_namesx.cpp')
-rw-r--r--src/modules/m_namesx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_namesx.cpp b/src/modules/m_namesx.cpp
index a1ae48b70..2e79d6a06 100644
--- a/src/modules/m_namesx.cpp
+++ b/src/modules/m_namesx.cpp
@@ -129,8 +129,8 @@ class ModuleNamesX : public Module
if ((it = std::find(data->wanted.begin(), data->wanted.end(), "multi-prefix")) != data->wanted.end())
{
// we can handle this, so ACK it, and remove it from the wanted list
- data->wanted.erase(it);
data->ack.push_back(*it);
+ data->wanted.erase(it);
data->user->Extend("NAMESX",dummy);
}
}
@@ -146,7 +146,7 @@ class ModuleNamesX : public Module
CapData *data = (CapData *) ev->GetData();
if (data->user->GetExt("NAMESX"))
- data->ack.push_back("multi-prefix");
+ data->wanted.push_back("multi-prefix");
}
if (ev->GetEventID() == "cap_clear")