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
2576ac1c
Commit
2576ac1c
authored
20 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Bertrand Demiddelaer fixed curl_easy_reset() so that it doesn't mistakingly
enable the progress meter.
parent
bfeea8e6
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
+4
-0
4 additions, 0 deletions
CHANGES
RELEASE-NOTES
+4
-1
4 additions, 1 deletion
RELEASE-NOTES
lib/easy.c
+2
-0
2 additions, 0 deletions
lib/easy.c
with
10 additions
and
1 deletion
CHANGES
+
4
−
0
View file @
2576ac1c
...
...
@@ -6,6 +6,10 @@
Changelog
Daniel (29 September 2004)
- Bertrand Demiddelaer fixed curl_easy_reset() so that it doesn't mistakingly
enable the progress meter.
Daniel (28 September 2004)
- "Mekonikum" found out that if you built curl without SSL support, although
your current SSL installation supports Engine, the compile fails.
...
...
This diff is collapsed.
Click to expand it.
RELEASE-NOTES
+
4
−
1
View file @
2576ac1c
...
...
@@ -16,6 +16,9 @@ This release includes the following changes:
This release includes the following bugfixes:
o curl_easy_reset() no longer enables the progress meter
o build fix for SSL disabled curl with SSL Engine support present
o configure --with-ssl=PATH now ignores pkg-config path info
o CURLOPT_SSLENGINE can be set to NULL even if no engine support is available
o LDAP crash when more than one record was received
o connect failures properly stores an error message in the errorbuffer
...
...
@@ -43,6 +46,6 @@ advice from friends like these:
Casey O'Donnell, Roland Krikava, Alex, Alexander Krasnostavsky, Kjetil
Jacobsen, Ling Thio, Roman Koifman, Harshal Pradhan, Jonas Forsman, David
Tarendash, Daniel at touchtunes, Bertrand Demiddelaer, Andreas Rieke,
Jean-Claude Chauve, Dan Fandrich, Peter Sylvester
Jean-Claude Chauve, Dan Fandrich, Peter Sylvester
, "Mekonikum"
Thanks! (and sorry if I forgot to mention someone)
This diff is collapsed.
Click to expand it.
lib/easy.c
+
2
−
0
View file @
2576ac1c
...
...
@@ -77,6 +77,7 @@
#include
"hostip.h"
#include
"share.h"
#include
"memory.h"
#include
"progress.h"
#define _MPRINTF_REPLACE
/* use our functions only */
#include
<curl/mprintf.h>
...
...
@@ -561,6 +562,7 @@ void curl_easy_reset(CURL *curl)
/* make libcurl quiet by default: */
data
->
set
.
hide_progress
=
TRUE
;
/* CURLOPT_NOPROGRESS changes these */
data
->
progress
.
flags
|=
PGRS_HIDE
;
/* Set the default size of the SSL session ID cache */
data
->
set
.
ssl
.
numsessions
=
5
;
...
...
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