From c403bebb7042a1c21959aded78bf10bad7a40a52 Mon Sep 17 00:00:00 2001 From: beck <> Date: Mon, 23 Jan 2017 06:49:31 +0000 Subject: Fix regress to handle movement of ssl structures to internal --- src/regress/lib/libssl/unit/cipher_list.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/regress/lib/libssl/unit/cipher_list.c b/src/regress/lib/libssl/unit/cipher_list.c index a9ae637d05..05616194eb 100644 --- a/src/regress/lib/libssl/unit/cipher_list.c +++ b/src/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 * Copyright (c) 2015 Joel Sing @@ -39,6 +39,8 @@ #include #include +#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)); -- cgit v1.2.3-55-g6feb