From: Matt Caswell Date: Mon, 18 Jul 2016 13:17:42 +0000 (+0100) Subject: Fix formatting in statem_srvr.c based on review feedback X-Git-Tag: OpenSSL_1_1_0-pre6~199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23dd09b5e96039300ba0196c122046d1d0b31af1;p=thirdparty%2Fopenssl.git Fix formatting in statem_srvr.c based on review feedback Also elaborated a comment based on feedback. Reviewed-by: Emilia Käsper --- diff --git a/ssl/statem/statem_srvr.c b/ssl/statem/statem_srvr.c index afeeee7bd44..b9d25ee106f 100644 --- a/ssl/statem/statem_srvr.c +++ b/ssl/statem/statem_srvr.c @@ -104,11 +104,12 @@ int ossl_statem_server_read_transition(SSL *s, int mt) if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) { if (s->s3->tmp.cert_request) { if (s->version == SSL3_VERSION) { - if ((s->verify_mode & SSL_VERIFY_PEER) && - (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) { + if ((s->verify_mode & SSL_VERIFY_PEER) + && (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) { /* * This isn't an unexpected message as such - we're just - * not going to accept it. + * not going to accept it because we require a client + * cert. */ ssl3_send_alert(s, SSL3_AL_FATAL, SSL3_AD_HANDSHAKE_FAILURE);