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

Fix HTTP DVB ACL

parent 668607b8
...@@ -145,9 +145,9 @@ int E_(HTTPOpen)( access_t *p_access ) ...@@ -145,9 +145,9 @@ int E_(HTTPOpen)( access_t *p_access )
} }
free( psz_address ); free( psz_address );
psz_user = var_GetString( p_access, "dvb-http-user" ); psz_user = var_GetNonEmptyString( p_access, "dvb-http-user" );
psz_password = var_GetString( p_access, "dvb-http-password" ); psz_password = var_GetNonEmptyString( p_access, "dvb-http-password" );
psz_acl = var_GetString( p_access, "dvb-http-acl" ); psz_acl = var_GetNonEmptyString( p_access, "dvb-http-acl" );
if ( psz_acl != NULL ) if ( psz_acl != NULL )
{ {
......
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