For consistency, set s->init_num in the 'reuse_message' case
authorBodo Möller <bodo@openssl.org>
Mon, 15 Oct 2001 20:16:36 +0000 (20:16 +0000)
committerBodo Möller <bodo@openssl.org>
Mon, 15 Oct 2001 20:16:36 +0000 (20:16 +0000)
(if s23_srvr.c faked the message, s->init_num is 0).

ssl/s3_both.c

index 409120badecd960ac7b7dc0b3c0a933e1e197b2f..8e840ec7c97c0c37202ee2b257b0f776661ba9e3 100644 (file)
@@ -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;