diff options
author | Harin Vadodaria <harin.vadodaria@oracle.com> | 2012-11-21 19:12:20 +0530 |
---|---|---|
committer | Harin Vadodaria <harin.vadodaria@oracle.com> | 2012-11-21 19:12:20 +0530 |
commit | 5e5bcd74873694e87f09809812c0f905d4eba91e (patch) | |
tree | 3d6a5f6ba96eaa5f03b0840b4557c7648b06decd /extra/yassl/src/ssl.cpp | |
parent | d820991044b5dcc214d54ee93e78ca98820f6df0 (diff) | |
download | mariadb-git-5e5bcd74873694e87f09809812c0f905d4eba91e.tar.gz |
Bug#15883127: PORT FIX FOR BUG #13904906 TO MYSQL 5.1
Description: Updated yassl to version 2.2.2
Diffstat (limited to 'extra/yassl/src/ssl.cpp')
-rw-r--r-- | extra/yassl/src/ssl.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extra/yassl/src/ssl.cpp b/extra/yassl/src/ssl.cpp index 3b1fc43bc94..7c264e5a939 100644 --- a/extra/yassl/src/ssl.cpp +++ b/extra/yassl/src/ssl.cpp @@ -27,7 +27,6 @@ - /* see man pages for function descriptions */ #include "runtime.hpp" @@ -1014,7 +1013,7 @@ char* ERR_error_string(unsigned long errNumber, char* buffer) static char* msg = (char*)"Please supply a buffer for error string"; if (buffer) { - SetErrorString(errNumber, buffer); + SetErrorString(YasslError(errNumber), buffer); return buffer; } |