From cf3a5cebd7d1a2094da18930acc3c926d7094ecd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Sat, 20 Oct 2001 18:56:01 +0000 Subject: [PATCH 1/1] Call msg_callback with correct length parameter if ssl3_write_bytes had to be called multiple times --- ssl/s3_both.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/s3_both.c b/ssl/s3_both.c index fa84077f68..c69e8d2308 100644 --- a/ssl/s3_both.c +++ b/ssl/s3_both.c @@ -135,7 +135,7 @@ int ssl3_do_write(SSL *s, int type) if (ret == s->init_num) { if (s->msg_callback) - s->msg_callback(1, s->version, type, s->init_buf->data, (size_t)s->init_num, s, s->msg_callback_arg); + s->msg_callback(1, s->version, type, s->init_buf->data, (size_t)(s->init_off + s->init_num), s, s->msg_callback_arg); return(1); } s->init_off+=ret; -- 2.34.1