summaryrefslogtreecommitdiffstats
path: root/ssl/tls13_enc.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-11-23 16:09:30 +0000
committerMatt Caswell <matt@openssl.org>2016-11-23 16:09:30 +0000
commit902d036c149c4d723b501bf09b327b2b4e2182af (patch)
tree5289dc2b970edf1f92ddbd44a57b7176ba8a414c /ssl/tls13_enc.c
parent5d8ce306349aabcf40da0324242025aac3cc56e4 (diff)
Fix a double ;; causing a travis failure
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'ssl/tls13_enc.c')
-rw-r--r--ssl/tls13_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/tls13_enc.c b/ssl/tls13_enc.c
index f8ccdec52e..b5306eb78c 100644
--- a/ssl/tls13_enc.c
+++ b/ssl/tls13_enc.c
@@ -289,7 +289,7 @@ int tls13_change_cipher_state(SSL *s, int which)
unsigned char *insecret;
unsigned char *finsecret = NULL;
EVP_CIPHER_CTX *ciph_ctx;
- const EVP_CIPHER *ciph = s->s3->tmp.new_sym_enc;;
+ const EVP_CIPHER *ciph = s->s3->tmp.new_sym_enc;
size_t ivlen, keylen, finsecretlen;
const unsigned char *label;
size_t labellen;