diff options
author | Adam <Adam@anope.org> | 2013-01-22 21:20:05 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-01-22 21:20:05 -0500 |
commit | a634c7be65113c74736be0fb98f31b0c83ec2882 (patch) | |
tree | 6741e67e0aaee878964ddd56e16e40506411a272 /modules/commands/cs_info.cpp | |
parent | f656e3195f638336feea8f15cf9ae25298525adf (diff) |
Fix some compile errors
Diffstat (limited to 'modules/commands/cs_info.cpp')
-rw-r--r-- | modules/commands/cs_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/cs_info.cpp b/modules/commands/cs_info.cpp index 074e48fd0..8808ec628 100644 --- a/modules/commands/cs_info.cpp +++ b/modules/commands/cs_info.cpp @@ -107,7 +107,7 @@ class CommandCSInfo : public Command } if (ci->HasExt("SUSPENDED")) { - Anope::string *by = ci->GetExt<Anope::string *>("suspend_by"), *reason = ci->GetExt<Anope::string *>("suspend_reason"); + Anope::string *by = ci->GetExt<ExtensibleItemClass<Anope::string> *>("suspend_by"), *reason = ci->GetExt<ExtensibleItemClass<Anope::string> *>("suspend_reason"); if (by != NULL) info["Suspended"] = Anope::printf("[%s] %s", by->c_str(), (reason && !reason->empty() ? reason->c_str() : NO_REASON)); } |