diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-19 14:23:31 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-19 14:23:31 +0200 |
commit | bc8664c5c49f4ac9adbc5e3937a584e4a6b35614 (patch) | |
tree | c7a4c6517485335fbc4c0d06042d3feebd503fb7 /src/modules/extra | |
parent | cec9265bdbb63c06d73cb983b3fc293905ed79d2 (diff) |
Move and rename typedef LocalUserList to UserManager::LocalList
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/m_geoip.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_geoip.cpp b/src/modules/extra/m_geoip.cpp index 394f7f9b4..f8e358bf7 100644 --- a/src/modules/extra/m_geoip.cpp +++ b/src/modules/extra/m_geoip.cpp @@ -56,7 +56,7 @@ class ModuleGeoIP : public Module if (gi == NULL) throw ModuleException("Unable to initialize geoip, are you missing GeoIP.dat?"); - for (LocalUserList::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); ++i) + for (UserManager::LocalList::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); ++i) { LocalUser* user = *i; if ((user->registered == REG_ALL) && (!ext.get(user))) |