diff options
author | 2014-05-29 21:22:54 +0000 | |
---|---|---|
committer | 2014-05-29 21:22:54 +0000 | |
commit | c487df4a3c966e4696d3a8faa885872f6d91ef93 (patch) | |
tree | 3f98ff24208d95eb68d1dee2d5c834db6d072b2f /lib/libssl/src | |
parent | ok, next pass after review: when possible, put the reallocarray arguments (diff) | |
download | wireguard-openbsd-c487df4a3c966e4696d3a8faa885872f6d91ef93.tar.xz wireguard-openbsd-c487df4a3c966e4696d3a8faa885872f6d91ef93.zip |
we no longer care that these aren't used for ssl2
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/ssl/ssl_locl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/ssl/ssl_locl.h b/lib/libssl/src/ssl/ssl_locl.h index d80bf958fda..16d31f33d23 100644 --- a/lib/libssl/src/ssl/ssl_locl.h +++ b/lib/libssl/src/ssl/ssl_locl.h @@ -502,8 +502,8 @@ typedef struct sess_cert_st { /* Obviously we don't have the private keys of these, * so maybe we shouldn't even use the CERT_PKEY type here. */ - RSA *peer_rsa_tmp; /* not used for SSL 2 */ - DH *peer_dh_tmp; /* not used for SSL 2 */ + RSA *peer_rsa_tmp; + DH *peer_dh_tmp; EC_KEY *peer_ecdh_tmp; int references; /* actually always 1 at the moment */ |