s3_srvr.c: fix typo [from HEAD].
PR: 2538
This commit is contained in:
parent
eb8a65db16
commit
09f17419a6
1 changed files with 1 additions and 1 deletions
|
@ -2970,7 +2970,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);
|
||||
|
|
Loading…
Reference in a new issue