View | Details | Raw Unified | Return to bug 44223
Collapse All | Expand All

(-)apache-tomcat-6.0.14-src.orig/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java (+3 lines)
Lines 283-288 Link Here
283
            log.debug("TrustPass = " + trustStorePassword);
283
            log.debug("TrustPass = " + trustStorePassword);
284
        }
284
        }
285
        String truststoreType = (String)attributes.get("truststoreType");
285
        String truststoreType = (String)attributes.get("truststoreType");
286
        if( truststoreType == null) {
287
            truststoreType = System.getProperty("javax.net.ssl.trustStoreType");
288
        }
286
        if(truststoreType == null) {
289
        if(truststoreType == null) {
287
            truststoreType = keystoreType;
290
            truststoreType = keystoreType;
288
        }
291
        }

Return to bug 44223