diff options
-rw-r--r-- | modules/encryption/enc_old.cpp | 2 | ||||
-rw-r--r-- | src/users.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/encryption/enc_old.cpp b/modules/encryption/enc_old.cpp index 7c751df93..7346132f9 100644 --- a/modules/encryption/enc_old.cpp +++ b/modules/encryption/enc_old.cpp @@ -45,7 +45,7 @@ class EOld : public Module oldmd5provider(this) { - ModuleManager::LoadModule("enc_md5", User::Find(creator)); + ModuleManager::LoadModule("enc_md5", User::Find(creator, true)); if (!md5) throw ModuleException("Unable to find md5 reference"); diff --git a/src/users.cpp b/src/users.cpp index 264f5ceba..25e558c5f 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -816,7 +816,7 @@ bool User::BadPassword() User* User::Find(const Anope::string &name, bool nick_only) { - if (!nick_only && IRCD->RequiresID) + if (!nick_only && IRCD && IRCD->RequiresID) { user_map::iterator it = UserListByUID.find(name); if (it != UserListByUID.end()) |