[Pancutan-commits] r66 - pancutan

tincho-guest at alioth.debian.org tincho-guest at alioth.debian.org
Fri Aug 17 01:32:38 UTC 2007


Author: tincho-guest
Date: 2007-08-17 01:32:38 +0000 (Fri, 17 Aug 2007)
New Revision: 66

Modified:
   pancutan/pancutan
Log:
Bug in the diehandler: it was not detecting dies while compiling.


Modified: pancutan/pancutan
===================================================================
--- pancutan/pancutan	2007-08-16 06:40:25 UTC (rev 65)
+++ pancutan/pancutan	2007-08-17 01:32:38 UTC (rev 66)
@@ -136,7 +136,7 @@
 # Signal handlers and clean-up routine
 
 sub diehandler {
-    die @_ if($^S); # eval
+    die @_ if(not defined $^S or $^S); # eval
     unless($i_am_a_fork) {
         info("Dying...");
         # Kill children




More information about the Pancutan-commits mailing list