billbarker    2002/12/18 01:26:48

  Modified:    jk/java/org/apache/jk/common HandlerRequest.java
  Log:
  Now, with the correct version, after remembering to save the file before doing a 
'ci'.
  
  Revision  Changes    Path
  1.20      +3 -4      
jakarta-tomcat-connectors/jk/java/org/apache/jk/common/HandlerRequest.java
  
  Index: HandlerRequest.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/java/org/apache/jk/common/HandlerRequest.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- HandlerRequest.java       18 Dec 2002 09:15:06 -0000      1.19
  +++ HandlerRequest.java       18 Dec 2002 09:26:48 -0000      1.20
  @@ -532,11 +532,10 @@
               case SC_A_SSL_CERT     :
                   req.scheme().setString( "https" );
                   // Transform the string into certificate.
  -                tmpMB = new MessageBytes();
  -                msg.getBytes(tmpMB);
  -                String certString = tmpMB.toString();
  +                MessageBytes tmpMB2 = new MessageBytes();
  +                msg.getBytes(tmpMB2);
                   // SSL certificate extraction is costy, moved to JkCoyoteHandler
  -                req.setNote(WorkerEnv.SSL_CERT_NOTE, tmpMB);
  +                req.setNote(WorkerEnv.SSL_CERT_NOTE, tmpMB2);
                   break;
                   
               case SC_A_SSL_CIPHER   :
  
  
  

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

Reply via email to