Bump TLS1_3_VERSION_DRAFT for draft-23
[openssl.git] / ssl / s3_msg.c
index afdac4ee325218af598ed1ea8a3941c4bd0dc91a..5e6e7c442895c8ac9005f84328fd877f72e99683 100644 (file)
@@ -25,16 +25,16 @@ int ssl3_do_change_cipher_spec(SSL *s)
         if (s->session == NULL || s->session->master_key_length == 0) {
             /* might happen if dtls1_read_bytes() calls this */
             SSLerr(SSL_F_SSL3_DO_CHANGE_CIPHER_SPEC, SSL_R_CCS_RECEIVED_EARLY);
-            return (0);
+            return 0;
         }
 
         s->session->cipher = s->s3->tmp.new_cipher;
         if (!s->method->ssl3_enc->setup_key_block(s))
-            return (0);
+            return 0;
     }
 
     if (!s->method->ssl3_enc->change_cipher_state(s, i))
-        return (0);
+        return 0;
 
     /*
      * we have to record the message digest at this point so we can get it