diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.cpp b/src/config.cpp index 1a1c91cc1..a356bcd80 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -300,6 +300,7 @@ Conf::Conf() : Block("") const Anope::string &nname = oper.Get<const Anope::string>("name"), &type = oper.Get<const Anope::string>("type"), &password = oper.Get<const Anope::string>("password"), + &password_hash = oper.Get<const Anope::string>("password_hash"), &certfp = oper.Get<const Anope::string>("certfp"), &host = oper.Get<const Anope::string>("host"), &vhost = oper.Get<const Anope::string>("vhost"); @@ -320,6 +321,7 @@ Conf::Conf() : Block("") auto *o = new Oper(nname, ot); o->require_oper = require_oper; o->password = password; + o->password_hash = password_hash; spacesepstream(certfp).GetTokens(o->certfp); spacesepstream(host).GetTokens(o->hosts); o->vhost = vhost; |