Skip to content

Commit

Permalink
Fix typo in kqueue
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12638 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
danieldg committed Mar 16, 2010
1 parent 13fa09f commit 5867fa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/socketengines/socketengine_kqueue.cpp
Expand Up @@ -229,7 +229,7 @@ int KQueueEngine::DispatchEvents()
SetEventMask(eh, eh->GetEventMask() & ~bits_to_clr);
eh->HandleEvent(EVENT_WRITE);

if (eh != ref[ke_list[j].ident];
if (eh != ref[ke_list[j].ident])
// whoops, deleted out from under us
continue;
}
Expand Down

0 comments on commit 5867fa1

Please sign in to comment.