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
2b280bcc
Commit
2b280bcc
authored
18 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
fix compiler warnings for SSL-disabled builds
parent
1c0224be
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/sslgen.c
+3
-0
3 additions, 0 deletions
lib/sslgen.c
lib/sslgen.h
+0
-1
0 additions, 1 deletion
lib/sslgen.h
with
3 additions
and
1 deletion
lib/sslgen.c
+
3
−
0
View file @
2b280bcc
...
...
@@ -609,6 +609,9 @@ bool Curl_ssl_data_pending(struct connectdata *conn,
if
(
conn
->
ssl
[
connindex
].
handle
)
/* SSL is in use */
return
SSL_pending
(
conn
->
ssl
[
connindex
].
handle
);
#else
(
void
)
conn
;
(
void
)
connindex
;
#endif
return
FALSE
;
/* nothing pending */
...
...
This diff is collapsed.
Click to expand it.
lib/sslgen.h
+
0
−
1
View file @
2b280bcc
...
...
@@ -77,7 +77,6 @@ bool Curl_ssl_data_pending(struct connectdata *conn,
#if !defined(USE_SSL) && !defined(SSLGEN_C)
/* set up blank macros for none-SSL builds */
#define Curl_ssl_close_all(x)
#define Curl_ssl_data_pending(x,y) 0
#endif
#define SSL_SHUTDOWN_TIMEOUT 10000
/* ms */
...
...
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