From dbd5c34f18d9119cfdeca439eb7aac28117f53d4 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 26 Apr 2016 17:52:21 +0100 Subject: Fix BIO_CTRL_DUP for an SSL BIO The variables in the BIO weren't being duplicated properly. Reviewed-by: Richard Levitte Reviewed-by: Viktor Dukhovni --- ssl/bio_ssl.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'ssl/bio_ssl.c') diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c index e3deebc08e..4cbfb3c6ed 100644 --- a/ssl/bio_ssl.c +++ b/ssl/bio_ssl.c @@ -424,10 +424,11 @@ static long ssl_ctrl(BIO *b, int cmd, long num, void *ptr) dbs = BIO_get_data(dbio); SSL_free(dbs->ssl); dbs->ssl = SSL_dup(ssl); - dbs->renegotiate_count = dbs->renegotiate_count; - dbs->byte_count = dbs->byte_count; - dbs->renegotiate_timeout = dbs->renegotiate_timeout; - dbs->last_time = dbs->last_time; + dbs->num_renegotiates = bs->num_renegotiates; + dbs->renegotiate_count = bs->renegotiate_count; + dbs->byte_count = bs->byte_count; + dbs->renegotiate_timeout = bs->renegotiate_timeout; + dbs->last_time = bs->last_time; ret = (dbs->ssl != NULL); break; case BIO_C_GET_FD: -- cgit v1.2.3