Remove redundant check to stop compiler warning.
diff --git a/ssl/s23_clnt.c b/ssl/s23_clnt.c
index e6f9bf9..47f9389 100644
--- a/ssl/s23_clnt.c
+++ b/ssl/s23_clnt.c
@@ -619,7 +619,7 @@
 #endif
 		}
 	else if (p[1] == SSL3_VERSION_MAJOR &&
-	         (p[2] >= SSL3_VERSION_MINOR && p[2] <= TLS1_1_VERSION_MINOR) &&
+	         p[2] <= TLS1_1_VERSION_MINOR &&
 	         ((p[0] == SSL3_RT_HANDSHAKE && p[5] == SSL3_MT_SERVER_HELLO) ||
 	          (p[0] == SSL3_RT_ALERT && p[3] == 0 && p[4] == 2)))
 		{