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
9220f1ac
Commit
9220f1ac
authored
Jan 20, 2000
by
Vincent Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Desactivation du changement de chaine en --novlan
parent
694d473d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/input/input_vlan.c
src/input/input_vlan.c
+0
-2
src/interface/interface.c
src/interface/interface.c
+7
-0
No files found.
src/input/input_vlan.c
View file @
9220f1ac
...
...
@@ -134,8 +134,6 @@ static int ZeTrucMucheFunction( int Channel)
struct
sockaddr_in
sa_client
;
char
mess
[
80
];
return
(
0
);
/*
*Looking for informations about the eth0 interface
*/
...
...
src/interface/interface.c
View file @
9220f1ac
...
...
@@ -140,6 +140,13 @@ void intf_Destroy( intf_thread_t *p_intf )
int
intf_SelectInput
(
intf_thread_t
*
p_intf
,
int
i_index
)
{
intf_DbgMsg
(
"
\n
"
);
/* If VLANs are not active, return with an error */
if
(
!
p_main
->
b_vlans
)
{
intf_ErrMsg
(
"error: VLANs are not activated
\n
"
);
return
(
1
);
}
/* Kill existing input, if any */
if
(
p_intf
->
p_input
!=
NULL
)
...
...
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