From e965bc3049030307d91b13cace96b7640a79d46e Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 26 Jan 2014 01:03:43 -0500 Subject: Revert "Rename db_old hash plain -> none which is what 1.8 calls it" This reverts commit 9a9ca417500e3de64013583e3f6db8dd165d9a95. --- modules/database/db_old.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/database') diff --git a/modules/database/db_old.cpp b/modules/database/db_old.cpp index cc47e2abc..739fcaebe 100644 --- a/modules/database/db_old.cpp +++ b/modules/database/db_old.cpp @@ -441,7 +441,7 @@ static void LoadNicks() char pwbuf[32]; READ(read_buffer(pwbuf, f)); - if (hashm == "none") + if (hashm == "plain") my_b64_encode(pwbuf, nc->pass); else if (hashm == "md5" || hashm == "oldmd5") nc->pass = Hex(pwbuf, 16); @@ -1176,7 +1176,7 @@ class DBOld : public Module hashm = Config->GetModule(this)->Get("hash"); - if (hashm != "md5" && hashm != "oldmd5" && hashm != "sha1" && hashm != "none" && hashm != "sha256") + if (hashm != "md5" && hashm != "oldmd5" && hashm != "sha1" && hashm != "plain" && hashm != "sha256") throw ModuleException("Invalid hash method"); } -- cgit