From 0b8b405cbb0020e1ad51b5fa8cff197ae389e3a8 Mon Sep 17 00:00:00 2001
From: Sam Hocevar <sam@videolan.org>
Date: Fri, 7 Feb 2003 01:09:12 +0000
Subject: [PATCH]   * ./src/interface/interface.c: interface variable is
 "intf", not "interface".

---
 src/interface/interface.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/interface/interface.c b/src/interface/interface.c
index 57c6f88621..f964912b4e 100644
--- a/src/interface/interface.c
+++ b/src/interface/interface.c
@@ -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 );
     }
-- 
2.25.4