1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 01:43:12 +02:00

Fix some code which was supposed to be part of the previous commit.

This commit is contained in:
Sadie Powell
2025-08-21 10:45:39 +01:00
parent dd13846cad
commit 04de41ad7f
+3 -1
View File
@@ -509,7 +509,9 @@ public:
if(!sasl.badpasslimit)
sasl.badpasslimit = options.Get<unsigned>("badpasslimit");
sasl.badpasstimeout = options.Get<time_t>("badpasstimeout");
sasl.badpasstimeout = modconf.Get<time_t>("badpasstimeout");
if (!sasl.badpasstimeout)
sasl.badpasstimeout = options.Get<unsigned>("badpasstimeout");
}
~ModuleSASL() override