# HG changeset patch # User bertrand # Date 1083274490 0 # Node ID 2e0a4b32e139b28050bac53398dc9e83d6725a6a # Parent af557de9daee8aaa9536b7c3445ff513cf2b7704 Should be Connection: close, and not closed. It has been there since v1.3... Thanks to Jonas Jensen to noticed it. diff -r af557de9daee -r 2e0a4b32e139 libmpdemux/network.c --- a/libmpdemux/network.c Thu Apr 29 21:01:09 2004 +0000 +++ b/libmpdemux/network.c Thu Apr 29 21:34:50 2004 +0000 @@ -466,7 +466,7 @@ if (network_cookies_enabled) cookies_set( http_hdr, server_url->hostname, server_url->url ); - http_set_field( http_hdr, "Connection: closed"); + http_set_field( http_hdr, "Connection: close"); http_add_basic_authentication( http_hdr, url->username, url->password ); if( http_build_request( http_hdr )==NULL ) { return -1;