Index: libcfa/src/concurrency/channel.hfa
===================================================================
--- libcfa/src/concurrency/channel.hfa	(revision 7d25f441f46f87f370858dbcac73c01f4b7bc14f)
+++ libcfa/src/concurrency/channel.hfa	(revision 70f97c8afc8f67948e201bda2e96e6de8bd31a31)
@@ -340,6 +340,6 @@
     unlock( mutex_lock );
 
-    // only return true when not special OR case, not exceptional calse and status is SAT
-    return ( node.extra == 0p || !node.park_counter ) ? false : *node.clause_status == __SELECT_SAT;
+    // only return true when not special OR case and status is SAT
+    return !node.park_counter ? false : *node.clause_status == __SELECT_SAT;
 }
 
