diff options
author | Adam <Adam@anope.org> | 2011-04-27 22:51:55 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-05-16 04:09:07 -0400 |
commit | 8fb1604f649bec6f356770daf5df6bb8ab811bbf (patch) | |
tree | 75ddfc26592a6357666e3f48fcb8cd20c693792b /src/nickalias.cpp | |
parent | 284af258bf3c4dc7f409722d66bb0ac59e01e37d (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.cpp | 2 |
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(); } } |