This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 8990cac7f8745651cce24db3919de8eb48e1ffd0 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