]> git.sesse.net Git - vlc/commitdiff
Probe interface plugis strictly
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Thu, 25 Sep 2008 15:33:12 +0000 (18:33 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Thu, 25 Sep 2008 15:33:12 +0000 (18:33 +0300)
We don't want a different interface than the one requested (if any)

src/interface/interface.c

index 7e0fc928ff7f8682c65f11c62863d5c31c6da5b5..b850eeb4102923768ca29298f5d4229b5522c68e 100644 (file)
@@ -101,7 +101,7 @@ intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module )
 
     /* Choose the best module */
     p_intf->psz_intf = strdup( psz_module );
-    p_intf->p_module = module_need( p_intf, "interface", psz_module, false );
+    p_intf->p_module = module_need( p_intf, "interface", psz_module, true );
 
     if( p_intf->p_module == NULL )
     {