summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 23:53:25 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 23:53:25 +0000
commit6f9f2617e7af08f30177c9c8a7650b6df9abd9d6 (patch)
treed50a90bb0350ecf2d029b9c8df3133a0fb443d29 /src
parent8c2430d02d89eeefda00a2b23d3e8bbe18693fe4 (diff)
Fixed compile error in ss_main.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2000 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/core/ss_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ss_main.c b/src/core/ss_main.c
index 3b266a849..95b9e2fa8 100644
--- a/src/core/ss_main.c
+++ b/src/core/ss_main.c
@@ -62,7 +62,7 @@ class SSMain : public Module
for (current = cmdTable[i]; current; current = current->next)
{
for (c = current->c; c; c = c->next)
- this->DelCommand(cmdTable, c->name);
+ this->DelCommand(cmdTable, c->name.c_str());
}
}
if (statserv)