From 0a639a105ebaa1e6abfecd549eb7b1bfbfa6f1b3 Mon Sep 17 00:00:00 2001 From: robertc <> Date: Sun, 2 Feb 2003 19:06:32 +0000 Subject: [PATCH] Summary: Fix typo in debug statements. Keywords: Fix typo in debug statements. --- src/client_side_reply.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.47.3