diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-26 21:50:15 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-26 21:55:59 +0000 |
commit | 79f215606dae66367277012b394009542e4f51a4 (patch) | |
tree | 74c83676c3c1cc2906e06b65adf850136729da8e /src/config.cpp | |
parent | 2fd4b45f8106e23a8c4bb7857a1ee60dc5146887 (diff) |
Allow using more than one fingerprint in an oper block.
Closes #362.
Diffstat (limited to 'src/config.cpp')
-rw-r--r-- | src/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.cpp b/src/config.cpp index 99720ef2e..eb037c76a 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -319,7 +319,7 @@ Conf::Conf() : Block("") auto *o = new Oper(nname, ot); o->require_oper = require_oper; o->password = password; - o->certfp = certfp; + spacesepstream(certfp).GetTokens(o->certfp); spacesepstream(host).GetTokens(o->hosts); o->vhost = vhost; |