From 9a9ca417500e3de64013583e3f6db8dd165d9a95 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 9 Jan 2014 15:42:31 -0500 Subject: [PATCH] Rename db_old hash plain -> none which is what 1.8 calls it --- data/example.conf | 2 +- modules/database/db_old.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/example.conf b/data/example.conf index 948700e8b..3ab1e2d42 100644 --- a/data/example.conf +++ b/data/example.conf @@ -1065,7 +1065,7 @@ mail /* * This is the encryption type used by the databases. This must be set correctly or - * your passwords will not work. Valid options are: md5, oldmd5, sha1, and plain. + * your passwords will not work. Valid options are: md5, oldmd5, sha1, and none. * You must also be sure to load the correct encryption module below in the Encryption * Modules section so that your passwords work. */ diff --git a/modules/database/db_old.cpp b/modules/database/db_old.cpp index 739fcaebe..cc47e2abc 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 == "plain") + if (hashm == "none") 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 != "plain" && hashm != "sha256") + if (hashm != "md5" && hashm != "oldmd5" && hashm != "sha1" && hashm != "none" && hashm != "sha256") throw ModuleException("Invalid hash method"); }