Commit b575a47b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

MMSH: use var_Inherit

parent 4c56bbfe
......@@ -90,23 +90,18 @@ int MMSHOpen( access_t *p_access )
/* Check proxy */
/* TODO reuse instead http-proxy from http access ? */
psz_proxy = var_CreateGetString( p_access, "mmsh-proxy" );
if( !*psz_proxy )
psz_proxy = var_CreateGetNonEmptyString( p_access, "mmsh-proxy" );
if( !psz_proxy )
{
char *psz_http_proxy = config_GetPsz( p_access, "http-proxy" );
if( psz_http_proxy && *psz_http_proxy )
char *psz_http_proxy = var_InheritString( p_access, "http-proxy" );
if( psz_http_proxy )
{
free( psz_proxy );
psz_proxy = psz_http_proxy;
var_SetString( p_access, "mmsh-proxy", psz_proxy );
}
else
{
free( psz_http_proxy );
}
}
if( *psz_proxy )
if( psz_proxy )
{
p_sys->b_proxy = true;
vlc_UrlParse( &p_sys->proxy, psz_proxy, 0 );
......
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