Commit 431defd1 authored by Rafaël Carré's avatar Rafaël Carré

Makes services_discovery option strictly load the given module (i.e. not use a...

Makes services_discovery option strictly load the given module (i.e. not use a fallback module if the one specified isn't available)
parent 79bbae7f
......@@ -61,7 +61,7 @@ services_discovery_Create ( vlc_object_t * p_super, const char * psz_module_name
vlc_event_manager_register_event_type( &p_sd->event_manager,
vlc_ServicesDiscoveryItemRemoved );
p_sd->p_module = module_Need( p_sd, "services_discovery", psz_module_name, 0 );
p_sd->p_module = module_Need( p_sd, "services_discovery", psz_module_name, VLC_TRUE );
if( p_sd->p_module == 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