billbarker    2002/11/23 01:07:23

  Modified:    coyote/src/java/org/apache/coyote/tomcat3
                        CoyoteInterceptor2.java
  Log:
  It's way too late for me to be programming, when I miss simple things like this.
  
  Revision  Changes    Path
  1.15      +1 -1      
jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat3/CoyoteInterceptor2.java
  
  Index: CoyoteInterceptor2.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat3/CoyoteInterceptor2.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- CoyoteInterceptor2.java   23 Nov 2002 09:04:16 -0000      1.14
  +++ CoyoteInterceptor2.java   23 Nov 2002 09:07:23 -0000      1.15
  @@ -244,7 +244,7 @@
                // Only allowed a single cert under the 2.2 Spec.
                Object [] value = (Object []) 
cReq.getAttribute(SSLSupport.CERTIFICATE_KEY);
                if( value != null ) {
  -                 cReq.setAttribute(key, value[0]);
  +                 cReq.setAttribute(SSLSupport.CERTIFICATE_KEY, value[0]);
                }
                
                   return cReq.getAttribute(key);
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to