diff options
Diffstat (limited to 'lib/libssl/d1_srvr.c')
-rw-r--r-- | lib/libssl/d1_srvr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/d1_srvr.c b/lib/libssl/d1_srvr.c index 24f0a2e86ea..a118e8e82f8 100644 --- a/lib/libssl/d1_srvr.c +++ b/lib/libssl/d1_srvr.c @@ -909,7 +909,8 @@ dtls1_send_server_hello(SSL *s) if (s->state == SSL3_ST_SW_SRVR_HELLO_A) { buf = (unsigned char *)s->init_buf->data; p = s->s3->server_random; - ssl_fill_hello_random(s, 1, p, SSL3_RANDOM_SIZE); + RAND_pseudo_bytes(p, SSL3_RANDOM_SIZE); + /* Do the message type and length last */ d = p= &(buf[DTLS1_HM_HEADER_LENGTH]); |