This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit cdf6329f705e366b50f47a12453e9236355356d2 Author: Mark Thomas <ma...@apache.org> AuthorDate: Wed Nov 1 19:34:31 2023 +0000 OpenSSL master branch is now 3.3.x --- test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java index 0df4cb26bb..ab9433b84d 100644 --- a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java +++ b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java @@ -49,8 +49,10 @@ public class TesterOpenSSL { } catch (IOException e) { versionString = ""; } - if (versionString.startsWith("OpenSSL 3.2.")) { - // Note: Gump currently tests 11.x with OpenSSL 3.2.x + if (versionString.startsWith("OpenSSL 3.3.")) { + // Note: Gump currently tests 11.x with OpenSSL 3.3.x + VERSION = 30300; + } else if (versionString.startsWith("OpenSSL 3.2.")) { VERSION = 30200; } else if (versionString.startsWith("OpenSSL 3.1.")) { VERSION = 30100; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org