Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
85c84889
Commit
85c84889
authored
Jul 10, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hmmph, logic fix
parent
dcf286bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
modules/access/ftp.c
modules/access/ftp.c
+7
-7
No files found.
modules/access/ftp.c
View file @
85c84889
...
@@ -189,13 +189,6 @@ static int Connect( access_t *p_access, access_sys_t *p_sys )
...
@@ -189,13 +189,6 @@ static int Connect( access_t *p_access, access_sys_t *p_sys )
return
-
1
;
return
-
1
;
}
}
/* Extended passive mode */
if
(
ftp_SendCommand
(
p_access
,
"EPSV ALL"
)
<
0
)
{
msg_Err
(
p_access
,
"cannot request extended passive mode"
);
return
-
1
;
}
return
0
;
return
0
;
}
}
...
@@ -249,6 +242,13 @@ static int Open( vlc_object_t *p_this )
...
@@ -249,6 +242,13 @@ static int Open( vlc_object_t *p_this )
if
(
Connect
(
p_access
,
p_sys
)
<
0
)
if
(
Connect
(
p_access
,
p_sys
)
<
0
)
goto
exit_error
;
goto
exit_error
;
/* Extended passive mode */
if
(
ftp_SendCommand
(
p_access
,
"EPSV ALL"
)
<
0
)
{
msg_Err
(
p_access
,
"cannot request extended passive mode"
);
return
-
1
;
}
if
(
ftp_ReadCommand
(
p_access
,
&
i_answer
,
NULL
)
==
2
)
if
(
ftp_ReadCommand
(
p_access
,
&
i_answer
,
NULL
)
==
2
)
{
{
char
hostaddr
[
NI_MAXNUMERICHOST
];
char
hostaddr
[
NI_MAXNUMERICHOST
];
...
...
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