diff options
author | markus <> | 2002-07-30 16:00:16 +0000 |
---|---|---|
committer | markus <> | 2002-07-30 16:00:16 +0000 |
commit | b16c13ed2fd774b1e93a0165b809fda9376b3fc4 (patch) | |
tree | 5cd7e8e3dd15c5a8b25bce74c5b82182b5081b19 /src/lib/libssl/s3_clnt.c | |
parent | c54a116b266c232d9e0ffad482eb5f8b98130ac4 (diff) | |
download | openbsd-b16c13ed2fd774b1e93a0165b809fda9376b3fc4.tar.gz openbsd-b16c13ed2fd774b1e93a0165b809fda9376b3fc4.tar.bz2 openbsd-b16c13ed2fd774b1e93a0165b809fda9376b3fc4.zip |
sync with http://www.openssl.org/news/patch_20020730_0_9_7.txt
(adds fix for unused kerberos and engine code, and some more
assertions, as well as a 64bit integer string fix for conf_mod.c)
Diffstat (limited to 'src/lib/libssl/s3_clnt.c')
-rw-r--r-- | src/lib/libssl/s3_clnt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/libssl/s3_clnt.c b/src/lib/libssl/s3_clnt.c index b6be748932..5d3efac2cd 100644 --- a/src/lib/libssl/s3_clnt.c +++ b/src/lib/libssl/s3_clnt.c | |||
@@ -1597,6 +1597,7 @@ static int ssl3_send_client_key_exchange(SSL *s) | |||
1597 | SSL_MAX_MASTER_KEY_LENGTH); | 1597 | SSL_MAX_MASTER_KEY_LENGTH); |
1598 | EVP_EncryptFinal_ex(&ciph_ctx,&(epms[outl]),&padl); | 1598 | EVP_EncryptFinal_ex(&ciph_ctx,&(epms[outl]),&padl); |
1599 | outl += padl; | 1599 | outl += padl; |
1600 | die(outl <= sizeof epms); | ||
1600 | EVP_CIPHER_CTX_cleanup(&ciph_ctx); | 1601 | EVP_CIPHER_CTX_cleanup(&ciph_ctx); |
1601 | 1602 | ||
1602 | /* KerberosWrapper.EncryptedPreMasterSecret */ | 1603 | /* KerberosWrapper.EncryptedPreMasterSecret */ |