]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
use HTTP_OK instead of '200' (Max Okumoto)
authorwessels <>
Sat, 25 Oct 1997 22:45:59 +0000 (22:45 +0000)
committerwessels <>
Sat, 25 Oct 1997 22:45:59 +0000 (22:45 +0000)
src/client_side.cc

index 109ced4d8c5de02c1ecb41fa14a4b1a14534fce9..175c43d8137503030d48da56193a37425dd2920f 100644 (file)
@@ -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;
 }