From: wessels <> Date: Wed, 6 May 1998 23:07:57 +0000 (+0000) Subject: debugging and gindent X-Git-Tag: SQUID_3_0_PRE1~3374 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe4a33acc22bfab88d3f5bb19c8b877fda9bd371;p=thirdparty%2Fsquid.git debugging and gindent --- diff --git a/src/store_client.cc b/src/store_client.cc index 6298806120..920b4a8fe5 100644 --- a/src/store_client.cc +++ b/src/store_client.cc @@ -68,7 +68,7 @@ storeClientCopyEvent(void *data) { store_client *sc = data; int valid = cbdataValid(sc); -debug(0,0)("storeClientCopyEvent: Running\n"); + debug(20, 3) ("storeClientCopyEvent: Running\n"); cbdataUnlock(sc); if (!valid) return; @@ -108,12 +108,12 @@ storeClientCopy(StoreEntry * e, sc->copy_offset = copy_offset; if (sc->flags.store_copying) { cbdataLock(sc); -debug(0,0)("storeClientCopy: Queueing storeClientCopyEvent()\n"); + debug(20, 3) ("storeClientCopy: Queueing storeClientCopyEvent()\n"); eventAdd("storeClientCopyEvent", storeClientCopyEvent, sc, 0); } else { - sc->flags.store_copying = 1; - storeClientCopy2(e, sc); - sc->flags.store_copying = 0; + sc->flags.store_copying = 1; + storeClientCopy2(e, sc); + sc->flags.store_copying = 0; } }