]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Adjusted two more calls to httpBuildRequestHeader() to not use a client
authorhno <>
Fri, 4 Oct 2002 20:00:22 +0000 (20:00 +0000)
committerhno <>
Fri, 4 Oct 2002 20:00:22 +0000 (20:00 +0000)
filedescriptor

src/htcp.cc
src/ssl.cc
src/tunnel.cc

index d422d3d723cc14cd86d660d370a81e7d2aa1eac1..01994d2c10d68e3a21335e12ed6155ceee00b098 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: htcp.cc,v 1.41 2002/08/09 10:57:43 robertc Exp $
+ * $Id: htcp.cc,v 1.42 2002/10/04 14:00:22 hno Exp $
  *
  * DEBUG: section 31    Hypertext Caching Protocol
  * AUTHOR: Duane Wesssels
@@ -917,7 +917,7 @@ htcpQuery(StoreEntry * e, request_t * req, peer * p)
     stuff.S.method = (char *) RequestMethodStr[req->method];
     stuff.S.uri = (char *) storeUrl(e);
     stuff.S.version = vbuf;
-    httpBuildRequestHeader(req, req, e, &hdr, -1, flags);
+    httpBuildRequestHeader(req, req, e, &hdr, flags);
     memBufDefInit(&mb);
     packerToMemInit(&pa, &mb);
     httpHeaderPackInto(&hdr, &pa);
index ace89d11b812cee3c8df6ea93adec1f83d50e0e2..a77f539f60b5636115dc5d8986fb6d23d35ab50b 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ssl.cc,v 1.122 2002/09/15 06:40:57 robertc Exp $
+ * $Id: ssl.cc,v 1.123 2002/10/04 14:00:22 hno Exp $
  *
  * DEBUG: section 26    Secure Sockets Layer Proxy
  * AUTHOR: Duane Wessels
@@ -543,7 +543,6 @@ sslProxyConnected(int fd, void *data)
        sslState->request,
        NULL,                   /* StoreEntry */
        &hdr_out,
-       sslState->client.fd,
        flags);                 /* flags */
     packerToMemInit(&p, &mb);
     httpHeaderPackInto(&hdr_out, &p);
index ba497553a8551eabb5ac6d555bd62ed07a3d549a..e509466604e01dfd56d2e310bdfbdc545d07a3d2 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: tunnel.cc,v 1.122 2002/09/15 06:40:57 robertc Exp $
+ * $Id: tunnel.cc,v 1.123 2002/10/04 14:00:22 hno Exp $
  *
  * DEBUG: section 26    Secure Sockets Layer Proxy
  * AUTHOR: Duane Wessels
@@ -543,7 +543,6 @@ sslProxyConnected(int fd, void *data)
        sslState->request,
        NULL,                   /* StoreEntry */
        &hdr_out,
-       sslState->client.fd,
        flags);                 /* flags */
     packerToMemInit(&p, &mb);
     httpHeaderPackInto(&hdr_out, &p);