summaryrefslogtreecommitdiffstats
path: root/ssl/s3_both.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssl/s3_both.c')
-rw-r--r--ssl/s3_both.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/s3_both.c b/ssl/s3_both.c
index 409120bade..8e840ec7c9 100644
--- a/ssl/s3_both.c
+++ b/ssl/s3_both.c
@@ -357,7 +357,8 @@ long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok)
}
*ok=1;
s->init_msg = s->init_buf->data + 4;
- return((int)s->s3->tmp.message_size);
+ s->init_num = (int)s->s3->tmp.message_size;
+ return s->init_num;
}
p=(unsigned char *)s->init_buf->data;