This is an automated email from the ASF dual-hosted git repository.

remm pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new e9f1f008e5 Fix weird merge
e9f1f008e5 is described below

commit e9f1f008e5b3097b57c662e772975fcbbd15a3cd
Author: remm <r...@apache.org>
AuthorDate: Wed Aug 27 11:31:48 2025 +0200

    Fix weird merge
---
 java/org/apache/tomcat/util/net/openssl/OpenSSLContext.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/org/apache/tomcat/util/net/openssl/OpenSSLContext.java 
b/java/org/apache/tomcat/util/net/openssl/OpenSSLContext.java
index 8194e2f113..877438bd29 100644
--- a/java/org/apache/tomcat/util/net/openssl/OpenSSLContext.java
+++ b/java/org/apache/tomcat/util/net/openssl/OpenSSLContext.java
@@ -368,7 +368,7 @@ public class OpenSSLContext implements 
org.apache.tomcat.util.net.SSLContext {
                             x509TrustManager.checkClientTrusted(peerCerts, 
auth);
                             return true;
                         } catch (Exception e) {
-                            log.isDebugEnabled() {
+                            if (log.isDebugEnabled()) {
                                 
log.debug(sm.getString("openssl.certificateVerificationFailed"), e);
                             }
                         }


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to