summaryrefslogtreecommitdiff
path: root/modules/commands/cs_info.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-10-18 12:06:51 -0400
committerAdam <Adam@anope.org>2011-10-18 12:06:51 -0400
commiteb5b5f97d12921bcae665b67380c86e68b776dc6 (patch)
tree189c8e77151a6accb5c2ad1ab3cfa695d1b50d7e /modules/commands/cs_info.cpp
parentfaea45245db7d2a84857ba8e5239b9b7e273233e (diff)
Fixed compile errors on release build
Diffstat (limited to 'modules/commands/cs_info.cpp')
-rw-r--r--modules/commands/cs_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/cs_info.cpp b/modules/commands/cs_info.cpp
index e7c8e039e..b58158576 100644
--- a/modules/commands/cs_info.cpp
+++ b/modules/commands/cs_info.cpp
@@ -100,7 +100,7 @@ class CommandCSInfo : public Command
}
if (ci->HasFlag(CI_SUSPENDED))
{
- Anope::string *by = ci->GetExt<Anope::string *>("suspend_by"), *reason = ci->GetExt<Anope::string *>("suspend_reason");
+ Anope::string *by = ci->GetExt<ExtensibleString *>("suspend_by"), *reason = ci->GetExt<ExtensibleString *>("suspend_reason");
if (by != NULL)
source.Reply(_(" Suspended: [%s] %s"), by->c_str(), (reason && !reason->empty() ? reason->c_str() : NO_REASON));
}