summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-18 22:56:16 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-18 22:56:16 +0000
commitfeb86babf235ceb39954b9670c622bde11ec1270 (patch)
tree8f98886eb9631d98eee7f0c76df71df369ad9fe3
parent9e7eb7a29a99958c7decd9ceb127a911b5ebbfa6 (diff)
*** empty log message ***
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1438 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/inspircd.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 5759d1f78..b026723a0 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -3105,12 +3105,7 @@ int InspIRCd(char** argv, int argc)
// now loop through all of the items in this pool if any are waiting
if ((selectResult2 > 0) && (xcount != clientlist.end()))
-#ifdef IS_SOLARIS
- // on solaris, we cycle the entire list. Something is b0rked about referencing it by count2a.
- for (user_hash::iterator count2a = clientlist.begin(); count2a != clientlist.end(); count2a++)
-#else
for (user_hash::iterator count2a = xcount; count2a != endingiter; count2a++)
-#endif
{
// SELECT: we have to iterate...
if (count2a == clientlist.end())