diff options
author | Adam <Adam@anope.org> | 2016-10-09 22:06:59 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-10-09 22:06:59 -0400 |
commit | ab749ce2a871c524c2f187635913998bbcd41a1d (patch) | |
tree | b9c05ffc0741834cc425866d0d63b31b7d8eaf1a /modules/sasl.cpp | |
parent | 83b8e655306fd88fa130aea84f91d017edbedc24 (diff) |
Various other modname fixes
Diffstat (limited to 'modules/sasl.cpp')
-rw-r--r-- | modules/sasl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sasl.cpp b/modules/sasl.cpp index bd2f1a9ea..9feb3ffa6 100644 --- a/modules/sasl.cpp +++ b/modules/sasl.cpp @@ -291,7 +291,7 @@ void IdentifyRequestListener::OnSuccess(NickServ::IdentifyRequest *req) if (!na || na->GetAccount()->HasFieldS("NS_SUSPENDED")) return OnFail(req); - unsigned int maxlogins = Config->GetModule("ns_identify")->Get<unsigned int>("maxlogins"); + unsigned int maxlogins = Config->GetModule("nickserv/identify")->Get<unsigned int>("maxlogins"); if (maxlogins && na->GetAccount()->users.size() >= maxlogins) return OnFail(req); |