From: Andy Polyakov Date: Sun, 15 Apr 2012 17:23:23 +0000 (+0000) Subject: s3_srvr.c: fix typo [from HEAD]. X-Git-Tag: OpenSSL_1_0_0i~6 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=00419258445e3bf95cc7ca54877b7c2c4414af20;p=oweals%2Fopenssl.git s3_srvr.c: fix typo [from HEAD]. PR: 2538 --- diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c index a79c986da3..6db4a257f7 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -2728,7 +2728,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);