diff options
-rw-r--r-- | data/example.conf | 2 | ||||
-rw-r--r-- | modules/database/db_old.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/data/example.conf b/data/example.conf index 3ab1e2d42..948700e8b 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 none. + * your passwords will not work. Valid options are: md5, oldmd5, sha1, and plain. * 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 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<const Anope::string>("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"); } |