summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorJulius Goryavsky <julius.goryavsky@mariadb.com>2021-12-17 04:44:43 +0100
committerJulius Goryavsky <julius.goryavsky@mariadb.com>2021-12-17 04:44:43 +0100
commit85defc4764860613742af23acf954cfdd9397553 (patch)
treeda393c01db9d265d965d46051ae5355849ea84d2 /extra
parentfff8ac2e966ac123a091a3e1be22b59cbc1c7e9b (diff)
downloadmariadb-git-85defc4764860613742af23acf954cfdd9397553.tar.gz
MDEV-27181 fixup: compatibility with Windows + small correctionsbb-10.2-MDEV-27181-fix
1) Removed symlinks that are not very well supported in tar under Windows. 2) Added comment + changed code formatting in viosslfactories.c 3) Fixed a small bug in the yassl code. 4) Fixed a typo in the script code.
Diffstat (limited to 'extra')
-rw-r--r--extra/yassl/src/ssl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/yassl/src/ssl.cpp b/extra/yassl/src/ssl.cpp
index c4adb4692be..eac691315b7 100644
--- a/extra/yassl/src/ssl.cpp
+++ b/extra/yassl/src/ssl.cpp
@@ -773,7 +773,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_FAILURE;
+ int ret = SSL_SUCCESS;
if (file) ret = read_file(ctx, file, SSL_FILETYPE_PEM, CA);