From: wessels <> Date: Fri, 7 Nov 1997 01:29:31 +0000 (+0000) Subject: debug change X-Git-Tag: SQUID_3_0_PRE1~4562 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=84fa351cd656d136758868e7b1cdd99f119cece6;p=thirdparty%2Fsquid.git debug change --- diff --git a/src/http.cc b/src/http.cc index 89bfec7607..e8b0d132f8 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,6 +1,6 @@ /* - * $Id: http.cc,v 1.217 1997/11/05 05:29:27 wessels Exp $ + * $Id: http.cc,v 1.218 1997/11/06 18:29:31 wessels Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -512,7 +512,7 @@ httpProcessReplyHeader(HttpStateData * httpState, const char *buf, int size) strncat(httpState->reply_hdr, buf, room < size ? room : size); hdr_len += room < size ? room : size; if (hdr_len > 4 && strncmp(httpState->reply_hdr, "HTTP/", 5)) { - debug(11, 3) ("httpProcessReplyHeader: Non-HTTP-compliant header: '%s'\n", storeKeyText(entry->key)); + debug(11, 3) ("httpProcessReplyHeader: Non-HTTP-compliant header: '%s'\n", httpState->reply_hdr); httpState->reply_hdr_state += 2; reply->code = 555; return;