summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-02-26 21:50:15 +0000
committerSadie Powell <sadie@witchery.services>2024-02-26 21:55:59 +0000
commit79f215606dae66367277012b394009542e4f51a4 (patch)
tree74c83676c3c1cc2906e06b65adf850136729da8e /include
parent2fd4b45f8106e23a8c4bb7857a1ee60dc5146887 (diff)
Allow using more than one fingerprint in an oper block.
Closes #362.
Diffstat (limited to 'include')
-rw-r--r--include/opertype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opertype.h b/include/opertype.h
index 855dc8afb..d9f0f709f 100644
--- a/include/opertype.h
+++ b/include/opertype.h
@@ -23,7 +23,7 @@ struct CoreExport Oper
/* Whether the user must be an IRC operator (umode +o) to be considered a services operator */
bool require_oper = true;
Anope::string password;
- Anope::string certfp;
+ std::vector<Anope::string> certfp;
/* Hosts allowed to use this operator block */
std::vector<Anope::string> hosts;
Anope::string vhost;