summaryrefslogtreecommitdiff
path: root/src/nickalias.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-04-27 22:51:55 -0400
committerAdam <Adam@anope.org>2011-05-16 04:09:07 -0400
commit8fb1604f649bec6f356770daf5df6bb8ab811bbf (patch)
tree75ddfc26592a6357666e3f48fcb8cd20c693792b /src/nickalias.cpp
parent284af258bf3c4dc7f409722d66bb0ac59e01e37d (diff)
Fixed reading empty config values in the multiconfig code, caused by removal of DT_CHARPTR
Diffstat (limited to 'src/nickalias.cpp')
-rw-r--r--src/nickalias.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nickalias.cpp b/src/nickalias.cpp
index 019c54615..c31d98129 100644
--- a/src/nickalias.cpp
+++ b/src/nickalias.cpp
@@ -25,6 +25,8 @@ NickAlias::NickAlias(const Anope::string &nickname, NickCore *nickcore) : Flags<
if (o == NULL)
o = Oper::Find(this->nc->display);
this->nc->o = o;
+ if (this->nc->o != NULL)
+ Log() << "Tied oper " << this->nc->display << " to type " << this->nc->o->ot->GetName();
}
}