From: serassio <> Date: Sun, 23 Jan 2005 18:32:42 +0000 (+0000) Subject: Bug #1203: Icons are broken in non-anonymous FTP when using the short_icon_urls option X-Git-Tag: SQUID_3_0_PRE4~898 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4361707cc0c9cb8c7f752a33be2dc1e2532004c5;p=thirdparty%2Fsquid.git Bug #1203: Icons are broken in non-anonymous FTP when using the short_icon_urls option --- diff --git a/src/client_side.cc b/src/client_side.cc index 1e4b184538..b2f78b118b 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.678 2004/12/21 15:03:01 robertc Exp $ + * $Id: client_side.cc,v 1.679 2005/01/23 11:32:42 serassio Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -2244,8 +2244,10 @@ clientProcessRequest(ConnStateData::Pointer &conn, ClientSocketContext *context, } } - if (http->flags.internal) + if (http->flags.internal) { request->protocol = PROTO_HTTP; + request->login[0] = '\0'; + } } request->flags.internal = http->flags.internal;