diff options
| author | 2012-11-21 00:15:13 +0100 | |
|---|---|---|
| committer | 2012-11-29 23:41:22 +0100 | |
| commit | a589577b68cb84bc877ecdd4c0f9cb84a1581ddd (patch) | |
| tree | 37a4f52f9bcac855d7fa2198f991a2fc919ea738 /src/modules/m_jumpserver.cpp | |
| parent | m_cgiirc Fix wrong announcement when the host in WEBIRC is too long (diff) | |
Add a typedef for LocalUserList
Diffstat (limited to 'src/modules/m_jumpserver.cpp')
| -rw-r--r-- | src/modules/m_jumpserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_jumpserver.cpp b/src/modules/m_jumpserver.cpp index 2d304ab74..ac3add29b 100644 --- a/src/modules/m_jumpserver.cpp +++ b/src/modules/m_jumpserver.cpp @@ -99,7 +99,7 @@ class CommandJumpserver : public Command if (redirect_all_immediately) { /* Redirect everyone but the oper sending the command */ - for (std::vector<LocalUser*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++) + for (LocalUserList::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); ++i) { User* t = *i; if (!IS_OPER(t)) |
