]> git.sesse.net Git - vlc/commitdiff
Use strict mode when probing access filters.
authorRémi Denis-Courmont <rem@videolan.org>
Wed, 3 Jan 2007 22:23:02 +0000 (22:23 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Wed, 3 Jan 2007 22:23:02 +0000 (22:23 +0000)
You do not want to get another access filter plugin that the one you
requested, do you?

src/input/access.c

index 6a0a63453c472d9991ea34716973650838efec41..2c032eadc3c7ea3117f782f79b20ce958cd5ca83 100644 (file)
@@ -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
     {