mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Bug #21025377 CAN'T CONNECT TO SSL ENABLED SERVER FIRST 30 SEC AFTER
INITIAL STARTUP Updated yassl to yassl-2.3.7e (cherry picked from commit 6e21c8c04b922bdb60b6a7c174709d2e1bdd3618)
This commit is contained in:
parent
b1895fb8c9
commit
0243a2d432
3 changed files with 9 additions and 2 deletions
|
@ -12,6 +12,13 @@ before calling SSL_new();
|
|||
|
||||
*** end Note ***
|
||||
|
||||
yaSSL Patch notes, version 2.3.7e (6/26/2015)
|
||||
This release of yaSSL includes a fix for Date less than comparison.
|
||||
Previously yaSSL would return true on less than comparisons if the Dates
|
||||
were equal. Reported by Oracle. No security problem, but if a cert was
|
||||
generated right now, a server started using it in the same second, and a
|
||||
client tried to verify it in the same second it would report not yet valid.
|
||||
|
||||
yaSSL Patch notes, version 2.3.7d (6/22/2015)
|
||||
This release of yaSSL includes a fix for input_buffer set_current with
|
||||
index 0. SSL_peek() at front of waiting data could trigger. Robert
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#include "rsa.h"
|
||||
|
||||
|
||||
#define YASSL_VERSION "2.3.7d"
|
||||
#define YASSL_VERSION "2.3.7e"
|
||||
|
||||
|
||||
#if defined(__cplusplus)
|
||||
|
|
|
@ -71,7 +71,7 @@ bool operator>(tm& a, tm& b)
|
|||
|
||||
bool operator<(tm& a, tm&b)
|
||||
{
|
||||
return !(a>b);
|
||||
return (b>a);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue