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

Use strict mode when probing access filters.

You do not want to get another access filter plugin that the one you
requested, do you?
parent 7fb3ea1b
......@@ -90,7 +90,7 @@ static access_t *access2_InternalNew( vlc_object_t *p_obj, const char *psz_acces
if( p_source )
{
p_access->p_module =
module_Need( p_access, "access_filter", psz_access, VLC_FALSE );
module_Need( p_access, "access_filter", psz_access, VLC_TRUE );
}
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