This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 11.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit b3da79e3604fb6471c38104d0f95ba4786f5bb54 Author: remm <[email protected]> AuthorDate: Thu Sep 11 21:21:19 2025 +0200 Missed rename --- java/org/apache/tomcat/util/net/SecureNio2Channel.java | 4 ++-- java/org/apache/tomcat/util/net/SecureNioChannel.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/java/org/apache/tomcat/util/net/SecureNio2Channel.java b/java/org/apache/tomcat/util/net/SecureNio2Channel.java index c1a341a18d..97ac0fed90 100644 --- a/java/org/apache/tomcat/util/net/SecureNio2Channel.java +++ b/java/org/apache/tomcat/util/net/SecureNio2Channel.java @@ -100,9 +100,9 @@ public class SecureNio2Channel extends Nio2Channel { protected void createSSLEngine(String hostName, List<Cipher> clientRequestedCiphers, List<String> clientRequestedApplicationProtocols, List<String> clientRequestedProtocols, - List<Group> clientSupportedGroups, List<SignatureScheme> clientSignatureAlgorithms) { + List<Group> clientSupportedGroups, List<SignatureScheme> clientSignatureSchemes) { sslEngine = endpoint.createSSLEngine(hostName, clientRequestedCiphers, clientRequestedApplicationProtocols, - clientRequestedProtocols, clientSupportedGroups, clientSignatureAlgorithms); + clientRequestedProtocols, clientSupportedGroups, clientSignatureSchemes); } diff --git a/java/org/apache/tomcat/util/net/SecureNioChannel.java b/java/org/apache/tomcat/util/net/SecureNioChannel.java index 40df014362..4bf40a7796 100644 --- a/java/org/apache/tomcat/util/net/SecureNioChannel.java +++ b/java/org/apache/tomcat/util/net/SecureNioChannel.java @@ -930,9 +930,9 @@ public class SecureNioChannel extends NioChannel { protected void createSSLEngine(String hostName, List<Cipher> clientRequestedCiphers, List<String> clientRequestedApplicationProtocols, List<String> clientRequestedProtocols, - List<Group> clientSupportedGroups, List<SignatureScheme> clientSignatureAlgorithms) { + List<Group> clientSupportedGroups, List<SignatureScheme> clientSignatureSchemes) { sslEngine = endpoint.createSSLEngine(hostName, clientRequestedCiphers, clientRequestedApplicationProtocols, - clientRequestedProtocols, clientSupportedGroups, clientSignatureAlgorithms); + clientRequestedProtocols, clientSupportedGroups, clientSignatureSchemes); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
