diff options
author | Adam <Adam@anope.org> | 2016-11-03 22:54:35 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-11-03 22:54:35 -0400 |
commit | 4b97a9b13f2aa2b27e1ecd050db3b94f9b40ac77 (patch) | |
tree | e7fa7185cd3f054be7a002de19e4a119ff900cc7 /modules/encryption/enc_old.cpp | |
parent | 07f72a3122479bb10c923a5f72b316297e388a7f (diff) |
Fix crash loading enc_old prior to the proto mods
Diffstat (limited to 'modules/encryption/enc_old.cpp')
-rw-r--r-- | modules/encryption/enc_old.cpp | 2 |
1 files changed, 1 insertions, 1 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"); |