diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-15 11:03:07 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-15 11:03:07 +0000 |
commit | 8ecba5091890040141b73d3be7e5b4aeb93dcff7 (patch) | |
tree | c09761067fb7ae6704daa8194d7ea6dfbf52e22d /src | |
parent | a98ba09b10e0c19e183a4ccbe3af1f4553dde84e (diff) |
Had comparison back to front
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2464 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/cull_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cull_list.cpp b/src/cull_list.cpp index ff763dfd7..b8a48b1f1 100644 --- a/src/cull_list.cpp +++ b/src/cull_list.cpp @@ -73,7 +73,7 @@ CullList::CullList() void CullList::AddItem(userrec* user, std::string reason) { - if (exempt.find(user) != exempt.end()) + if (exempt.find(user) == exempt.end()) { CullItem item(user,reason); list.push_back(item); |