]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed backwards logic in debug_trap
authorwessels <>
Sat, 19 Oct 1996 06:13:23 +0000 (06:13 +0000)
committerwessels <>
Sat, 19 Oct 1996 06:13:23 +0000 (06:13 +0000)
ChangeLog
src/tools.cc

index 6166e5e79a46498fb229b4aaf0b1c5478ea9c155..adc8667857617378f988585abe860efcd584d484 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -34,6 +34,7 @@ Changes to squid-1.1.beta8 ():
        - Fixed stuck objects from "304 Not Modified" responses without
          final blank line.
        - Added failure detection to icmpRecv().
+       - Fixed backwards logic in debug_trap().
 
 Changes to squid-1.1.beta7 (October 14, 1996):
 
index 57690e5dbd72f89121632deae08f00b57cf84675..4299a340fd5f8490483247b136d5b4167c407119 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: tools.cc,v 1.74 1996/10/15 23:32:55 wessels Exp $
+ * $Id: tools.cc,v 1.75 1996/10/19 00:13:24 wessels Exp $
  *
  * DEBUG: section 21    Misc Functions
  * AUTHOR: Harvest Derived
@@ -344,7 +344,7 @@ fatal_dump(char *message)
 {
     if (message)
        fatal_common(message);
-    if (opt_catch_signals)
+    if (!opt_catch_signals)
        storeWriteCleanLog();
     abort();
 }