diff options
| author | 2007-09-26 23:49:15 +0000 | |
|---|---|---|
| committer | 2007-09-26 23:49:15 +0000 | |
| commit | 2be86e1958ca8de8aaad54f75a8d6afec59d49af (patch) | |
| tree | 72bfb8ac3a4f013bf4e82cc8cdbdac6369b7946f /src/cmd_who.cpp | |
| parent | Is this thing on? (diff) | |
| download | inspircd++-2be86e1958ca8de8aaad54f75a8d6afec59d49af.tar.gz inspircd++-2be86e1958ca8de8aaad54f75a8d6afec59d49af.tar.bz2 inspircd++-2be86e1958ca8de8aaad54f75a8d6afec59d49af.zip | |
Fixed bug #404; this was caused by recieving multiple OPERTYPEs from a remote server, which eventually resulted in bad pointers inside the all_opers list
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8084 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_who.cpp')
| -rw-r--r-- | src/cmd_who.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_who.cpp b/src/cmd_who.cpp index 07370f31e..93855dce2 100644 --- a/src/cmd_who.cpp +++ b/src/cmd_who.cpp @@ -295,7 +295,7 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user) if (opt_viewopersonly) { /* Showing only opers */ - for (std::vector<userrec*>::iterator i = ServerInstance->all_opers.begin(); i != ServerInstance->all_opers.end(); i++) + for (std::list<userrec*>::iterator i = ServerInstance->all_opers.begin(); i != ServerInstance->all_opers.end(); i++) { userrec* oper = *i; |
