summaryrefslogtreecommitdiff
path: root/modules/commands/cs_list.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-05-05 21:18:47 -0400
committerAdam <Adam@anope.org>2013-05-05 21:18:47 -0400
commit3f5f84c92c1a424843b430c60a50efa600ae1236 (patch)
treeae16ada522b5cbed074f8d154d01e8657d195318 /modules/commands/cs_list.cpp
parent5b3f81ea78f7a8ab69ff94cbf2bbf07f5966682e (diff)
The const char* specialization of this no longer works
Diffstat (limited to 'modules/commands/cs_list.cpp')
-rw-r--r--modules/commands/cs_list.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/cs_list.cpp b/modules/commands/cs_list.cpp
index 9718b73a1..13492c007 100644
--- a/modules/commands/cs_list.cpp
+++ b/modules/commands/cs_list.cpp
@@ -155,7 +155,7 @@ class CommandCSList : public Command
{
source.Reply(" ");
source.Reply(_("Regex matches are also supported using the %s engine.\n"
- "Enclose your pattern in // if this is desired."), Config->GetBlock("options")->Get<const char *>("regexengine"));
+ "Enclose your pattern in // if this is desired."), Config->GetBlock("options")->Get<const Anope::string>("regexengine").c_str());
}
return true;