diff options
| author | 2014-03-14 13:04:10 +0100 | |
|---|---|---|
| committer | 2014-03-14 13:04:10 +0100 | |
| commit | adb26a4e882d317de4e4135f414b7002cafe07a4 (patch) | |
| tree | def07b4f4a086b1024e3a07c550b0b795a0559c5 /src/helperfuncs.cpp | |
| parent | Change allocation of InspIRCd::chanlist to be physically part of the object c... (diff) | |
Change allocation of UserManager::uuidlist to be physically part of the object containing it
Diffstat (limited to 'src/helperfuncs.cpp')
| -rw-r--r-- | src/helperfuncs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 850eaf4c0..567806efc 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -59,9 +59,9 @@ User* InspIRCd::FindNickOnly(const std::string &nick) User *InspIRCd::FindUUID(const std::string &uid) { - user_hash::iterator finduuid = this->Users->uuidlist->find(uid); + user_hash::iterator finduuid = this->Users->uuidlist.find(uid); - if (finduuid == this->Users->uuidlist->end()) + if (finduuid == this->Users->uuidlist.end()) return NULL; return finduuid->second; |
