diff options
author | Chad MILLER <chad@mysql.com> | 2008-11-20 09:51:01 -0500 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2008-11-20 09:51:01 -0500 |
commit | 490bc421014689f37f7954bcf82dec5a522d2225 (patch) | |
tree | a335b76b74efce1c817f21dcdd20ce1232f92cf1 /extra | |
parent | 480046c52e5938582a67223606f3813336b4405a (diff) | |
download | mariadb-git-490bc421014689f37f7954bcf82dec5a522d2225.tar.gz |
Update to change for bug 39178. Revert error-handling change, perhaps
temporarily if yassl maintainer has plans for other error handling.
Diffstat (limited to 'extra')
-rw-r--r-- | extra/yassl/src/cert_wrapper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/yassl/src/cert_wrapper.cpp b/extra/yassl/src/cert_wrapper.cpp index 1af5705d11d..ebec0882265 100644 --- a/extra/yassl/src/cert_wrapper.cpp +++ b/extra/yassl/src/cert_wrapper.cpp @@ -265,7 +265,7 @@ int CertManager::Validate() TaoCrypt::CertDecoder cert(source, true, &signers_, verifyNone_); int err = cert.GetError().What(); - if ( err && err != TaoCrypt::SIG_OTHER_E) + if ( err ) return err; uint sz = cert.GetPublicKey().size(); |