diff options
| author | 2009-10-21 23:44:48 +0000 | |
|---|---|---|
| committer | 2009-10-21 23:44:48 +0000 | |
| commit | 9924e5631193ad581d885380fd11ae8bfb91fa0b (patch) | |
| tree | a818b0bd77cf16e793a4a54c1aeafc0cbf1d0ddf /src/inspircd.cpp | |
| parent | some WriteGlobalSno changes (diff) | |
| download | inspircd++-9924e5631193ad581d885380fd11ae8bfb91fa0b.tar.gz inspircd++-9924e5631193ad581d885380fd11ae8bfb91fa0b.tar.bz2 inspircd++-9924e5631193ad581d885380fd11ae8bfb91fa0b.zip | |
Split LocalUser and RemoteUser
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11940 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
| -rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index d9f1d0423..ca6a59cac 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -99,7 +99,7 @@ void InspIRCd::Cleanup() ports.clear(); /* Close all client sockets, or the new process inherits them */ - std::vector<User*>::reverse_iterator i = Users->local_users.rbegin(); + std::vector<LocalUser*>::reverse_iterator i = Users->local_users.rbegin(); while (i != this->Users->local_users.rend()) { User* u = *i++; |
