Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
mbedtls
Commits
51bccd38
Commit
51bccd38
authored
Mar 10, 2015
by
Manuel Pégourié-Gonnard
Browse files
Fix compile error with renego disabled
parent
73ed39d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
51bccd38
...
...
@@ -25,6 +25,9 @@ Bugfix
* Fix potential unintended sign extension in asn1_get_len() on 64-bit
platforms.
* Fix potential memory leak in ssl_set_psk() (found by Mansour Moufid).
* Fix compile error when POLARSSL_SSL_DISABLE_RENEGOTATION and
POLARSSL_SSL_SSESSION_TICKETS where both enabled in config.h (introduced
in 1.3.10).
Changes
* ssl_set_own_cert() now longers calls pk_check_pair() since the
...
...
library/ssl_cli.c
View file @
51bccd38
...
...
@@ -602,8 +602,8 @@ static int ssl_write_client_hello( ssl_context *ssl )
*/
#if defined(POLARSSL_SSL_RENEGOTIATION)
if
(
ssl
->
renegotiation
==
SSL_INITIAL_HANDSHAKE
)
{
#endif
{
if
(
ssl
->
session_negotiate
->
ticket
!=
NULL
&&
ssl
->
session_negotiate
->
ticket_len
!=
0
)
{
...
...
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