summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-12-19 08:19:35 -0500
committerAdam <Adam@anope.org>2013-12-19 08:24:21 -0500
commit275f2fd374a75896b356297c1d9de8b13a894d1c (patch)
tree4a221d838306eb75c7b83b4740905cc460321ebf /src
parentc4d4107412554bd0bdebb1285ff4a8c5613175f4 (diff)
Fix db_old assigning empty greets to users who did not have a greet. Fix debug log message in extensible.cpp
Diffstat (limited to 'src')
-rw-r--r--src/extensible.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extensible.cpp b/src/extensible.cpp
index d977e0b3c..50b280c56 100644
--- a/src/extensible.cpp
+++ b/src/extensible.cpp
@@ -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;
}