diff options
| author | 2014-07-19 14:28:51 +0200 | |
|---|---|---|
| committer | 2014-07-19 14:28:51 +0200 | |
| commit | e5ada400b0f2e2ae02f40867450a6789126da6e3 (patch) | |
| tree | 2bb90da3198a359c4c0ea95bf3bfc8731808f7a4 /src/helperfuncs.cpp | |
| parent | Move and rename typedef LocalUserList to UserManager::LocalList (diff) | |
| download | inspircd++-e5ada400b0f2e2ae02f40867450a6789126da6e3.tar.gz inspircd++-e5ada400b0f2e2ae02f40867450a6789126da6e3.tar.bz2 inspircd++-e5ada400b0f2e2ae02f40867450a6789126da6e3.zip | |
Access local user list via new UserManager::GetLocalUsers() and make local_users private
Diffstat (limited to 'src/helperfuncs.cpp')
| -rw-r--r-- | src/helperfuncs.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 55a1b9f83..7b2a29f77 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -82,7 +82,8 @@ Channel* InspIRCd::FindChan(const std::string &chan) /* Send an error notice to all users, registered or not */ void InspIRCd::SendError(const std::string &s) { - for (UserManager::LocalList::const_iterator i = this->Users->local_users.begin(); i != this->Users->local_users.end(); ++i) + const UserManager::LocalList& list = Users.GetLocalUsers(); + for (UserManager::LocalList::const_iterator i = list.begin(); i != list.end(); ++i) { User* u = *i; if (u->registered == REG_ALL) |
