diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2017-05-06 22:24:59 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2017-05-06 22:24:59 +0000 |
commit | 18d1c6e07b42c33b10c20cebbd696cc5f818747d (patch) | |
tree | b6abebb637e798678fed2fa548ac76de21ed6f91 /regress | |
parent | ba84827169cdfb956e3d6579097579ad4894db7f (diff) |
Bring in an SSL_HANDSHAKE structure and commence the great shovelling
ok jsing@, gcc@, regress@
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/unit/tls_prf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libssl/unit/tls_prf.c b/regress/lib/libssl/unit/tls_prf.c index 5040ba2ce32..2eacb12af36 100644 --- a/regress/lib/libssl/unit/tls_prf.c +++ b/regress/lib/libssl/unit/tls_prf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls_prf.c,v 1.3 2017/03/25 13:37:40 jsing Exp $ */ +/* $OpenBSD: tls_prf.c,v 1.4 2017/05/06 22:24:58 beck Exp $ */ /* * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> * @@ -197,7 +197,7 @@ do_tls_prf_test(int test_no, struct tls_prf_test *tpt) goto failure; } - S3I(ssl)->tmp.new_cipher = cipher; + S3I(ssl)->hs.new_cipher = cipher; for (len = 1; len <= TLS_PRF_OUT_LEN; len++) { memset(out, 'A', TLS_PRF_OUT_LEN); |