From: wessels <> Date: Sat, 1 Nov 1997 02:34:48 +0000 (+0000) Subject: fix KILL_PARENT debug() X-Git-Tag: SQUID_3_0_PRE1~4599 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1c2c5abc05ffffda17515eef2474ddb1566f0b68;p=thirdparty%2Fsquid.git fix KILL_PARENT debug() --- diff --git a/src/main.cc b/src/main.cc index 65604f9ad6..8ce66c2070 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,6 +1,6 @@ /* - * $Id: main.cc,v 1.185 1997/10/30 22:40:51 wessels Exp $ + * $Id: main.cc,v 1.186 1997/10/31 19:34:48 wessels Exp $ * * DEBUG: section 1 Startup and Main Loop * AUTHOR: Harvest Derived @@ -299,7 +299,7 @@ shut_down(int sig) { pid_t ppid = getppid(); if (ppid > 1) { - debug(1, 1, "Killing RunCache, pid %d\n", ppid); + debug(1, 1) ("Killing RunCache, pid %d\n", ppid); kill(ppid, sig); } }