From ca6669acaae8a1e0c4ec8ad7e98e6a3a837a8d61 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Thu, 25 Sep 2008 18:33:12 +0300 Subject: [PATCH] Probe interface plugis strictly We don't want a different interface than the one requested (if any) --- src/interface/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface/interface.c b/src/interface/interface.c index 7e0fc928ff..b850eeb410 100644 --- a/src/interface/interface.c +++ b/src/interface/interface.c @@ -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 ) { -- 2.39.2