#BUGFIX
authorClaus Gittinger <cg@exept.de>
Fri, 12 Feb 2016 18:57:47 +0100
changeset 19190 07f644417e06
parent 19189 48f29d2c0455
child 19191 d7c92ebd54bf
#BUGFIX class: UnixOperatingSystem changed: #sendSignal:to:toGroup:toAll:
UnixOperatingSystem.st
--- a/UnixOperatingSystem.st	Fri Feb 12 16:58:35 2016 +0100
+++ b/UnixOperatingSystem.st	Fri Feb 12 18:57:47 2016 +0100
@@ -6588,7 +6588,7 @@
         pid = __intVal(processId);
         if (toAllBoolean == true) {
             pid = -pid;
-        } else if (toGroupBoolean) {
+        } else if (toGroupBoolean == true) {
             pid = 0;
         }    
         if (kill(pid, sigNo) < 0) {