projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fdee85c
)
ssl_send_certificate_error(): Cast ssl_send_data() return code to void
author
Fabian Keil
<fk@fabiankeil.de>
Tue, 10 Nov 2020 10:54:55 +0000
(11:54 +0100)
committer
Fabian Keil
<fk@fabiankeil.de>
Wed, 18 Nov 2020 11:01:49 +0000
(12:01 +0100)
... to silence CID 305232.
ssl_common.c
patch
|
blob
|
history
diff --git
a/ssl_common.c
b/ssl_common.c
index
c7bd538
..
41f0575
100644
(file)
--- a/
ssl_common.c
+++ b/
ssl_common.c
@@
-407,7
+407,7
@@
extern void ssl_send_certificate_error(struct client_state *csp)
/*
* Sending final message to client
*/
- ssl_send_data(ssl_attr, (const unsigned char *)message, strlen(message));
+
(void)
ssl_send_data(ssl_attr, (const unsigned char *)message, strlen(message));
free_certificate_chain(csp);