From 8fb1604f649bec6f356770daf5df6bb8ab811bbf Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 27 Apr 2011 22:51:55 -0400 Subject: Fixed reading empty config values in the multiconfig code, caused by removal of DT_CHARPTR --- src/nickalias.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nickalias.cpp') 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(); } } -- cgit