1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 09:16:37 +02:00

Fix db_old assigning empty greets to users who did not have a greet. Fix debug log message in extensible.cpp

This commit is contained in:
Adam
2013-12-19 08:19:35 -05:00
parent c4d4107412
commit 275f2fd374
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ bool* Extensible::Extend(const Anope::string &name, const bool &what)
if (ref)
return ref->Set(this);
Log(LOG_DEBUG) << "Shrink for nonexistant type " << name << " on " << static_cast<void *>(this);
Log(LOG_DEBUG) << "Extend for nonexistant type " << name << " on " << static_cast<void *>(this);
return NULL;
}