From: robertc <> Date: Sun, 2 Feb 2003 19:06:32 +0000 (+0000) Subject: Summary: Fix typo in debug statements. X-Git-Tag: SQUID_3_0_PRE1~409 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a639a105ebaa1e6abfecd549eb7b1bfbfa6f1b3;p=thirdparty%2Fsquid.git Summary: Fix typo in debug statements. Keywords: Fix typo in debug statements. --- diff --git a/src/client_side_reply.cc b/src/client_side_reply.cc index 281d7abb0b..11d412cc5f 100644 --- a/src/client_side_reply.cc +++ b/src/client_side_reply.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side_reply.cc,v 1.33 2003/01/28 10:01:19 robertc Exp $ + * $Id: client_side_reply.cc,v 1.34 2003/02/02 12:06:32 robertc Exp $ * * DEBUG: section 88 Client-side Reply Routines * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c) @@ -225,7 +225,7 @@ void clientReplyContext::saveState(clientHttpRequest * http) { assert(old_sc == NULL); - debug(88, 1)("clientReplyContext::saveState: saving store context"); + debug(88, 1)("clientReplyContext::saveState: saving store context\n"); http->old_entry = http->entry; old_sc = sc; old_reqsize = reqsize; @@ -241,7 +241,7 @@ void clientReplyContext::restoreState(clientHttpRequest * http) { assert(old_sc != NULL); - debug(88, 1)("clientReplyContext::restoreState: Restoring store context"); + debug(88, 1)("clientReplyContext::restoreState: Restoring store context\n"); http->entry = http->old_entry; sc = old_sc; reqsize = old_reqsize;