From 0b6d16226c91763fa026320fa49b2cd497595670 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Sat, 19 Oct 1996 06:13:23 +0000 Subject: [PATCH] Fixed backwards logic in debug_trap --- ChangeLog | 1 + src/tools.cc | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6166e5e79a..adc8667857 100644 --- 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): diff --git a/src/tools.cc b/src/tools.cc index 57690e5dbd..4299a340fd 100644 --- a/src/tools.cc +++ b/src/tools.cc @@ -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(); } -- 2.47.2