Commit a4f05a55 authored by Sam Hocevar's avatar Sam Hocevar

* modules/access/http.c:

    + Fixed erroneous extra "/" in URLs sent to a proxy.
parent f11b4de0
...@@ -632,7 +632,7 @@ static int Connect( access_t *p_access, int64_t i_tell ) ...@@ -632,7 +632,7 @@ static int Connect( access_t *p_access, int64_t i_tell )
if( p_sys->url.psz_path ) if( p_sys->url.psz_path )
{ {
net_Printf( VLC_OBJECT(p_access), p_sys->fd, net_Printf( VLC_OBJECT(p_access), p_sys->fd,
"GET http://%s:%d/%s HTTP/1.%d\r\n", "GET http://%s:%d%s HTTP/1.%d\r\n",
p_sys->url.psz_host, p_sys->url.i_port, p_sys->url.psz_host, p_sys->url.i_port,
p_sys->url.psz_path, p_sys->i_version ); p_sys->url.psz_path, p_sys->i_version );
} }
...@@ -642,7 +642,6 @@ static int Connect( access_t *p_access, int64_t i_tell ) ...@@ -642,7 +642,6 @@ static int Connect( access_t *p_access, int64_t i_tell )
"GET http://%s:%d/ HTTP/1.%d\r\n", "GET http://%s:%d/ HTTP/1.%d\r\n",
p_sys->url.psz_host, p_sys->url.i_port, p_sys->url.psz_host, p_sys->url.i_port,
p_sys->i_version ); p_sys->i_version );
} }
} }
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment