summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorChad MILLER <chad@mysql.com>2008-11-20 09:51:01 -0500
committerChad MILLER <chad@mysql.com>2008-11-20 09:51:01 -0500
commitd53d88b0748ded87570f6f07fcb49fdb7ef10ade (patch)
treea335b76b74efce1c817f21dcdd20ce1232f92cf1 /extra
parent918a8c469f679248096c9bfac70a426db87c5d87 (diff)
downloadmariadb-git-d53d88b0748ded87570f6f07fcb49fdb7ef10ade.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.cpp2
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();