SVN commit 728960 by carewolf: The headers in the cache can also become upto 8kb long now. M +1 -1 http.cpp --- trunk/KDE/kdelibs/kioslave/http/http.cpp #728959:728960 @@ -2597,7 +2597,7 @@ m_responseHeaders << buffer; // then the headers while(true) { - if (!gzgets(m_request.fcache, buffer, 4096) ) + if (!gzgets(m_request.fcache, buffer, 8192) ) { // Error, delete cache entry kDebug(7113) << "Could not access cached data! ";