Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
6421d69b
Commit
6421d69b
authored
19 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
David McCreedy fixed libcurl to no longer ignore AUTH failures and now it
reacts properly according to the CURLOPT_FTP_SSL setting.
parent
18081e30
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES
+3
-0
3 additions, 0 deletions
CHANGES
RELEASE-NOTES
+2
-1
2 additions, 1 deletion
RELEASE-NOTES
lib/ftp.c
+8
-2
8 additions, 2 deletions
lib/ftp.c
with
13 additions
and
3 deletions
CHANGES
+
3
−
0
View file @
6421d69b
...
...
@@ -7,6 +7,9 @@
Changelog
Daniel (20 March 2006)
- David McCreedy fixed libcurl to no longer ignore AUTH failures and now it
reacts properly according to the CURLOPT_FTP_SSL setting.
- Dan Fandrich fixed two TFTP problems: Fixed a bug whereby a received file
whose length was a multiple of 512 bytes could have random garbage
appended. Also, stop processing TFTP packets which are too short to be
...
...
This diff is collapsed.
Click to expand it.
RELEASE-NOTES
+
2
−
1
View file @
6421d69b
...
...
@@ -15,6 +15,7 @@ This release includes the following changes:
This release includes the following bugfixes:
o treat FTP AUTH failures properly
o TFTP transfers could trash data
o -d + -G combo crash
...
...
@@ -25,6 +26,6 @@ Other curl-related news since the previous public release:
This release would not have looked like this without help, code, reports and
advice from friends like these:
Dan Fandrich, Ilja van Sprundel
Dan Fandrich, Ilja van Sprundel
, David McCreedy
Thanks! (and sorry if I forgot to mention someone)
This diff is collapsed.
Click to expand it.
lib/ftp.c
+
8
−
2
View file @
6421d69b
...
...
@@ -2430,8 +2430,14 @@ static CURLcode ftp_statemach_act(struct connectdata *conn)
result
=
Curl_nbftpsendf
(
conn
,
"AUTH %s"
,
ftpauth
[
ftp
->
count1
]);
/* remain in this same state */
}
else
result
=
ftp_state_user
(
conn
);
else
{
if
(
data
->
set
.
ftp_ssl
>
CURLFTPSSL_TRY
)
/* we failed and CURLFTPSSL_CONTROL or CURLFTPSSL_ALL is set */
result
=
CURLE_FTP_SSL_FAILED
;
else
/* ignore the failure and continue */
result
=
ftp_state_user
(
conn
);
}
if
(
result
)
return
result
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment