From 3b1fb1a0226e29c9d7c79ff7fbde21ef9cac4deb Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sun, 15 Apr 2012 17:22:57 +0000 Subject: [PATCH 1/1] s3_srvr.c: fix typo. PR: 2538 --- ssl/s3_srvr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c index ebf432421f..87678c181b 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -2980,7 +2980,7 @@ int ssl3_get_cert_verify(SSL *s) if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_VERIFY) { s->s3->tmp.reuse_message=1; - if ((peer != NULL) && (type | EVP_PKT_SIGN)) + if ((peer != NULL) && (type & EVP_PKT_SIGN)) { al=SSL_AD_UNEXPECTED_MESSAGE; SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_MISSING_VERIFY_MESSAGE); -- 2.34.1