diff options
Diffstat (limited to 'regress/lib/libssl')
-rw-r--r-- | regress/lib/libssl/unit/cipher_list.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/regress/lib/libssl/unit/cipher_list.c b/regress/lib/libssl/unit/cipher_list.c index a9ae637d05e..05616194eb6 100644 --- a/regress/lib/libssl/unit/cipher_list.c +++ b/regress/lib/libssl/unit/cipher_list.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cipher_list.c,v 1.4 2016/12/04 14:33:04 jsing Exp $ */ +/* $OpenBSD: cipher_list.c,v 1.5 2017/01/23 06:49:31 beck Exp $ */ /* * Copyright (c) 2015 Doug Hogan <doug@openbsd.org> * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> @@ -39,6 +39,8 @@ #include <stdio.h> #include <string.h> +#include "ssl_locl.h" + #include "tests.h" static uint8_t cipher_bytes[] = { @@ -128,7 +130,7 @@ ssl_list_to_bytes_no_scsv(SSL *s, STACK_OF(SSL_CIPHER) **ciphers) buf[buflen - 1] = 0xab; /* Set renegotiate so it doesn't add SCSV */ - s->renegotiate = 1; + s->internal->renegotiate = 1; CHECK(ssl_cipher_list_to_bytes(s, *ciphers, buf, buflen, &outlen)); |