Commit 0b8b405c authored by Sam Hocevar's avatar Sam Hocevar

* ./src/interface/interface.c: interface variable is "intf", not "interface".

parent 404b16a4
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* interface, such as command line. * interface, such as command line.
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * 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> * 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 ) ...@@ -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 /* 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. */ * 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( psz_intf )
{ {
if( !strcasecmp( psz_intf, "dvdplay" ) ) if( !strcasecmp( psz_intf, "dvdplay" ) )
{ {
config_PutPsz( p_intf, "interface", "" ); config_PutPsz( p_intf, "intf", "" );
} }
free( psz_intf ); free( psz_intf );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment