aboutsummaryrefslogtreecommitdiffstats
path: root/package/openssl/patches/400-cve-2010-0740.patch
blob: 4c893eb38dd03050eec0762b2dd2305526f73b6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- 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;
 				}