]> git.sesse.net Git - vlc/commitdiff
* ./src/interface/interface.c: interface variable is "intf", not "interface".
authorSam Hocevar <sam@videolan.org>
Fri, 7 Feb 2003 01:09:12 +0000 (01:09 +0000)
committerSam Hocevar <sam@videolan.org>
Fri, 7 Feb 2003 01:09:12 +0000 (01:09 +0000)
src/interface/interface.c

index 57c6f88621a4dd981fea1cceeaa675b052d50ff6..f964912b4edde7a0feb006f8bf668b184667dac3 100644 (file)
@@ -4,7 +4,7 @@
  * interface, such as command line.
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: interface.c,v 1.102 2003/02/06 23:59:40 sam Exp $
+ * $Id: interface.c,v 1.103 2003/02/07 01:09:12 sam Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *
@@ -68,12 +68,12 @@ intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module )
 
     /* XXX: workaround for a bug in VLC 0.5.0 where the dvdplay plugin was
      * registering itself in $interface, which we do not want to happen. */
-    psz_intf = config_GetPsz( p_intf, "interface" );
+    psz_intf = config_GetPsz( p_intf, "intf" );
     if( psz_intf )
     {
         if( !strcasecmp( psz_intf, "dvdplay" ) )
         {
-            config_PutPsz( p_intf, "interface", "" );
+            config_PutPsz( p_intf, "intf", "" );
         }
         free( psz_intf );
     }