aboutsummaryrefslogtreecommitdiff
path: root/src/snomasks.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2019-02-07 12:18:12 +0000
committerGravatar Sadie Powell2019-02-07 12:18:12 +0000
commit2cc168cfc030497464e0cf30c19260f62670c298 (patch)
treee983613e81bc034fc797d0015630ffafc200f87c /src/snomasks.cpp
parentSnomaskManager: remove fakederef. (diff)
UserManager: remove fakederef.
Diffstat (limited to 'src/snomasks.cpp')
-rw-r--r--src/snomasks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp
index 3aa3407e2..073e79aeb 100644
--- a/src/snomasks.cpp
+++ b/src/snomasks.cpp
@@ -127,7 +127,7 @@ void Snomask::Send(char letter, const std::string& desc, const std::string& msg)
const std::string finalmsg = InspIRCd::Format("*** %s: %s", desc.c_str(), msg.c_str());
/* Only opers can receive snotices, so we iterate the oper list */
- const UserManager::OperList& opers = ServerInstance->Users->all_opers;
+ const UserManager::OperList& opers = ServerInstance->Users.all_opers;
for (UserManager::OperList::const_iterator i = opers.begin(); i != opers.end(); ++i)
{
User* user = *i;