From a4468dd56e96ea915d40627f3cb067084238e34a Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 30 Nov 2012 02:49:09 -0500 Subject: Allow modules to use the encryption modules to encrypt arbitrary things. Made enc_old depend on enc_md5. Allow not loading any encryption modules if you want to only use an external mechanism. Removed ns_sendpass since it's just a bad idea. --- src/init.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index e831351ec..e45d2a6f9 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -451,8 +451,6 @@ void Anope::Init(int ac, char **av) Module *protocol = ModuleManager::FindFirstOf(PROTOCOL); if (protocol == NULL) throw CoreException("You must load a protocol module!"); - else if (ModuleManager::FindFirstOf(ENCRYPTION) == NULL) - throw CoreException("You must load at least one encryption module"); Log() << "Using IRCd protocol " << protocol->name; -- cgit