remm 2003/08/12 05:01:27 Modified: util/java/org/apache/tomcat/util/net/jsse JSSE13SocketFactory.java Log: - Fix the build. Please do ant clean; ant after modifying any interface or superclass (or after any big commit). Thanks. Revision Changes Path 1.2 +6 -1 jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net/jsse/JSSE13SocketFactory.java Index: JSSE13SocketFactory.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net/jsse/JSSE13SocketFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- JSSE13SocketFactory.java 18 Jul 2003 05:26:45 -0000 1.1 +++ JSSE13SocketFactory.java 12 Aug 2003 12:01:27 -0000 1.2 @@ -155,7 +155,12 @@ sslProxy = context.getServerSocketFactory(); // Determine which cipher suites to enable - enabledCiphers = getEnabledCiphers(sslProxy.getSupportedCipherSuites()); + String requestedCiphers = (String)attributes.get("ciphers"); + if (requestedCiphers != null) { + enabledCiphers = getEnabledCiphers + (requestedCiphers, + sslProxy.getSupportedCipherSuites()); + } } catch(Exception e) { if( e instanceof IOException )
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]