]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
copy request_t->flags when building a new request_t from the original
authorwessels <>
Mon, 20 Jul 1998 22:27:08 +0000 (22:27 +0000)
committerwessels <>
Mon, 20 Jul 1998 22:27:08 +0000 (22:27 +0000)
one! (Arjan de Vet)

src/http.cc

index 98c5a1a49107c583d4c19dd8328b69d6c327ce7c..9db213de4ebf67a63296f0760a6d7f5d35ea6688 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: http.cc,v 1.294 1998/07/18 07:43:04 wessels Exp $
+ * $Id: http.cc,v 1.295 1998/07/20 16:27:08 wessels Exp $
  *
  * DEBUG: section 11    Hypertext Transfer Protocol (HTTP)
  * AUTHOR: Harvest Derived
@@ -818,6 +818,7 @@ httpStart(FwdState * fwdState, int fd)
            PROTO_NONE, storeUrl(httpState->entry));
        xstrncpy(proxy_req->host, httpState->peer->host, SQUIDHOSTNAMELEN);
        proxy_req->port = httpState->peer->http_port;
+       proxy_req->flags = orig_req->flags;
        httpState->request = requestLink(proxy_req);
        httpState->peer = httpState->peer;
        httpState->orig_request = requestLink(orig_req);