diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-05 20:32:10 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-05 20:32:10 +0000 |
commit | 60ea4c934972b76037bb1e08a4f4ab0da3afe634 (patch) | |
tree | 20b4507bc2d1a7aeba84362cbf37739328cbe3d5 /package/openssl/patches/400-cve-2010-0740.patch | |
parent | caf66f2bb2f3fa97a8409a254359c6e978534303 (diff) | |
download | upstream-60ea4c934972b76037bb1e08a4f4ab0da3afe634.tar.gz upstream-60ea4c934972b76037bb1e08a4f4ab0da3afe634.tar.bz2 upstream-60ea4c934972b76037bb1e08a4f4ab0da3afe634.zip |
[package] openssl: update to v0.9.8n, thanks Peter Wagner
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21382 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openssl/patches/400-cve-2010-0740.patch')
-rw-r--r-- | package/openssl/patches/400-cve-2010-0740.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/package/openssl/patches/400-cve-2010-0740.patch b/package/openssl/patches/400-cve-2010-0740.patch deleted file mode 100644 index 4c893eb38d..0000000000 --- a/package/openssl/patches/400-cve-2010-0740.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/ssl/s3_pkt.c -+++ b/ssl/s3_pkt.c -@@ -291,9 +291,9 @@ again: - if (version != s->version) - { - SSLerr(SSL_F_SSL3_GET_RECORD,SSL_R_WRONG_VERSION_NUMBER); -- /* Send back error using their -- * version number :-) */ -- s->version=version; -+ if ((s->version & 0xFF00) == (version & 0xFF00)) -+ /* Send back error using their minor version number :-) */ -+ s->version = (unsigned short)version; - al=SSL_AD_PROTOCOL_VERSION; - goto f_err; - } |