diff options
author | Venkata Sidagam <venkata.sidagam@oracle.com> | 2012-08-11 15:52:11 +0530 |
---|---|---|
committer | Venkata Sidagam <venkata.sidagam@oracle.com> | 2012-08-11 15:52:11 +0530 |
commit | cd5a42085fc9596de66933c77cb2107b20331502 (patch) | |
tree | dc682d239d85526807f0e94dd3ebd655aa4afadb /extra | |
parent | ec766b5dabdd98f3e7ed03435706ca5962834063 (diff) | |
parent | 40319e9b44d778d570bd146d4a43e1d1842bb357 (diff) | |
download | mariadb-git-cd5a42085fc9596de66933c77cb2107b20331502.tar.gz |
Bug #13115401: -SSL-KEY VALUE IS NOT VALIDATED AND IT ALLOWS INSECURE
CONNECTIONS IF SPE
Merged from mysql-5.1 to mysql-5.5
Diffstat (limited to 'extra')
-rw-r--r-- | extra/yassl/src/ssl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/yassl/src/ssl.cpp b/extra/yassl/src/ssl.cpp index ab5fee45038..7c264e5a939 100644 --- a/extra/yassl/src/ssl.cpp +++ b/extra/yassl/src/ssl.cpp @@ -746,7 +746,7 @@ void SSL_CTX_set_verify(SSL_CTX* ctx, int mode, VerifyCallback vc) int SSL_CTX_load_verify_locations(SSL_CTX* ctx, const char* file, const char* path) { - int ret = SSL_SUCCESS; + int ret = SSL_FAILURE; const int HALF_PATH = 128; if (file) ret = read_file(ctx, file, SSL_FILETYPE_PEM, CA); |