diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/configreader.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/configreader.h b/include/configreader.h index 342743991..35fa178a9 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -165,8 +165,9 @@ struct CommandLineConf class CoreExport OperInfo : public refcountbase { public: - std::set<std::string> AllowedOperCommands; - std::set<std::string> AllowedPrivs; + typedef std::set<std::string> PrivSet; + PrivSet AllowedOperCommands; + PrivSet AllowedPrivs; /** Allowed user modes from oper classes. */ std::bitset<64> AllowedUserModes; |