From: wessels <> Date: Thu, 2 Jul 1998 23:39:41 +0000 (+0000) Subject: request_t->urlpath became a strbuf at some point X-Git-Tag: SQUID_3_0_PRE1~3113 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6c632b84cb55cd17b843c4d7300c2f6ced7c7e2c;p=thirdparty%2Fsquid.git request_t->urlpath became a strbuf at some point --- diff --git a/src/HttpRequest.cc b/src/HttpRequest.cc index 0f27e22010..736392d10f 100644 --- a/src/HttpRequest.cc +++ b/src/HttpRequest.cc @@ -1,6 +1,6 @@ /* - * $Id: HttpRequest.cc,v 1.7 1998/06/02 21:38:06 rousskov Exp $ + * $Id: HttpRequest.cc,v 1.8 1998/07/02 17:39:41 wessels Exp $ * * DEBUG: section 73 HTTP Request * AUTHOR: Duane Wessels @@ -101,7 +101,7 @@ httpRequestSwapOut(const request_t * req, StoreEntry * e) assert(req && e); /* store request-line */ storeAppendPrintf(e, "%s %s HTTP/1.0\r\n", - RequestMethodStr[req->method], req->urlpath); + RequestMethodStr[req->method], strBuf(req->urlpath)); /* store headers */ { Packer p;