summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/unit/cipher_list.c
diff options
context:
space:
mode:
authorjsing <>2022-10-02 16:38:23 +0000
committerjsing <>2022-10-02 16:38:23 +0000
commit41318db5497cddfa4935c4ea48bcb2eb5786375e (patch)
tree71ad3fcbc5cab5d7be0868ff915931274c680328 /src/regress/lib/libssl/unit/cipher_list.c
parentefde998d3821e41e124a4bfcdf103e506055fc52 (diff)
downloadopenbsd-41318db5497cddfa4935c4ea48bcb2eb5786375e.tar.gz
openbsd-41318db5497cddfa4935c4ea48bcb2eb5786375e.tar.bz2
openbsd-41318db5497cddfa4935c4ea48bcb2eb5786375e.zip
Revise for SSL_CTX_INTERNAL and SSL_INTERNAL removal.
Diffstat (limited to 'src/regress/lib/libssl/unit/cipher_list.c')
-rw-r--r--src/regress/lib/libssl/unit/cipher_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/unit/cipher_list.c b/src/regress/lib/libssl/unit/cipher_list.c
index 0623dd69eb..543db41c24 100644
--- a/src/regress/lib/libssl/unit/cipher_list.c
+++ b/src/regress/lib/libssl/unit/cipher_list.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cipher_list.c,v 1.11 2022/07/07 13:11:45 tb Exp $ */ 1/* $OpenBSD: cipher_list.c,v 1.12 2022/10/02 16:38:23 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2015 Doug Hogan <doug@openbsd.org> 3 * Copyright (c) 2015 Doug Hogan <doug@openbsd.org>
4 * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> 4 * Copyright (c) 2015 Joel Sing <jsing@openbsd.org>
@@ -129,7 +129,7 @@ ssl_list_to_bytes_no_scsv(SSL *s, STACK_OF(SSL_CIPHER) **ciphers)
129 buf[buflen - 1] = 0xab; 129 buf[buflen - 1] = 0xab;
130 130
131 /* Set renegotiate so it doesn't add SCSV */ 131 /* Set renegotiate so it doesn't add SCSV */
132 s->internal->renegotiate = 1; 132 s->renegotiate = 1;
133 133
134 CHECK(CBB_init_fixed(&cbb, buf, buflen)); 134 CHECK(CBB_init_fixed(&cbb, buf, buflen));
135 CHECK(ssl_cipher_list_to_bytes(s, *ciphers, &cbb)); 135 CHECK(ssl_cipher_list_to_bytes(s, *ciphers, &cbb));