Fix a double blank line style issue
authorMatt Caswell <matt@openssl.org>
Thu, 5 Jan 2017 15:05:20 +0000 (15:05 +0000)
committerMatt Caswell <matt@openssl.org>
Fri, 6 Jan 2017 10:25:13 +0000 (10:25 +0000)
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2020)

ssl/t1_trce.c

index 46819489eef7bfccc38cc283346209482d3d4bac..340cbd403de0f05f51d212d9724f29b8ccdabfc2 100644 (file)
@@ -1103,7 +1103,6 @@ static int ssl_print_certificates(BIO *bio, SSL *s, int server, int indent,
             && !ssl_print_hexbuf(bio, indent, "context", 1, &msg, &msglen))
         return 0;
 
-
     if (msglen < 3)
         return 0;
     clen = (msg[0] << 16) | (msg[1] << 8) | msg[2];