From: wessels <> Date: Sat, 25 Oct 1997 22:45:59 +0000 (+0000) Subject: use HTTP_OK instead of '200' (Max Okumoto) X-Git-Tag: SQUID_3_0_PRE1~4691 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4869e8a110256795e6e488d2502e6e964cf206ba;p=thirdparty%2Fsquid.git use HTTP_OK instead of '200' (Max Okumoto) --- diff --git a/src/client_side.cc b/src/client_side.cc index 109ced4d8c..175c43d813 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.131 1997/10/24 03:14:35 wessels Exp $ + * $Id: client_side.cc,v 1.132 1997/10/25 16:45:59 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -340,7 +340,7 @@ clientConstructTraceEcho(clientHttpRequest * http) http->conn->fd, 0); /* flags */ http->log_type = LOG_TCP_MISS; - http->http_code = 200; + http->http_code = HTTP_OK; return buf; }