Blob Blame History Raw
2005-06-12 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
	* k3bcddbhttpquery.cpp/K3bCddbHttpQuery::slotConnected():
	  added ' HTTP/1.0' to the 'GET ...' to make it a valid HTTP
	  request

--- k3b-0.11.23/libk3b/cddb/k3bcddbhttpquery.cpp.proxy
+++ k3b-0.11.23/libk3b/cddb/k3bcddbhttpquery.cpp
@@ -100,6 +100,7 @@
     query.append( "&hello=" );
     query.append( handshakeString().replace( QRegExp( "\\s" ), "+" ) );
     query.append( "&proto=5" );
+    query.append( " HTTP/1.0" );
 
     query.prepend( "GET " );
 
@@ -116,6 +117,7 @@
     query.append( "&hello=" );
     query.append( handshakeString().replace( QRegExp( "\\s" ), "+" ) );
     query.append( "&proto=5" );
+    query.append( " HTTP/1.0" );
       
     query.prepend( "GET " );