1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 10:06:38 +02:00

Fixed compile errors on release build

This commit is contained in:
Adam
2011-10-18 12:06:51 -04:00
parent faea45245d
commit eb5b5f97d1
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -767,7 +767,7 @@ class DBPlain : public Module
db_buffer << "MD FLAGS " << ci->ToString() << endl;
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 && reason)
db_buffer << "MD SUSPEND " << *by << " :" << *reason << endl;
}