From kde-commits Fri Dec 30 23:29:44 2005 From: Dawit Alemayehu Date: Fri, 30 Dec 2005 23:29:44 +0000 To: kde-commits Subject: branches/KDE/3.5/kdelibs/kioslave/http Message-Id: <1135985384.376781.21754.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=113598539523575 SVN commit 492748 by adawit: Do not sanitize proxy-authorization header either. M +2 -2 http.cc --- branches/KDE/3.5/kdelibs/kioslave/http/http.cc #492747:492748 @@ -171,8 +171,8 @@ QString header = (*it).lower(); // Do not allow Request line to be specified and ignore // the other HTTP headers. - if (header.find(':') == -1 || header.startsWith("host") || - header.startsWith("proxy-authorization") || + if (header.find(':') == -1 || + header.startsWith("host") || header.startsWith("via")) continue;