Call msg_callback with correct length parameter if ssl3_write_bytes had to

be called multiple times
This commit is contained in:
Bodo Möller 2001-10-20 18:56:01 +00:00
parent a661b65357
commit cf3a5cebd7

View File

@ -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;