Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
0b8b405c
Commit
0b8b405c
authored
Feb 07, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./src/interface/interface.c: interface variable is "intf", not "interface".
parent
404b16a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/interface/interface.c
src/interface/interface.c
+3
-3
No files found.
src/interface/interface.c
View file @
0b8b405c
...
...
@@ -4,7 +4,7 @@
* interface, such as command line.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: interface.c,v 1.10
2 2003/02/06 23:59:40
sam Exp $
* $Id: interface.c,v 1.10
3 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
,
"int
erface
"
);
psz_intf
=
config_GetPsz
(
p_intf
,
"int
f
"
);
if
(
psz_intf
)
{
if
(
!
strcasecmp
(
psz_intf
,
"dvdplay"
)
)
{
config_PutPsz
(
p_intf
,
"int
erface
"
,
""
);
config_PutPsz
(
p_intf
,
"int
f
"
,
""
);
}
free
(
psz_intf
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment