costin      2002/10/04 16:26:25

  Modified:    jk/java/org/apache/jk/common HandlerRequest.java
  Log:
  Fix 13263.
  
  Revision  Changes    Path
  1.17      +3 -2      
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.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- HandlerRequest.java       1 Oct 2002 23:14:13 -0000       1.16
  +++ HandlerRequest.java       4 Oct 2002 23:26:25 -0000       1.17
  @@ -481,9 +481,10 @@
               /* Special case ( XXX in future API make it separate type !)
                */
               if( attributeCode == SC_A_SSL_KEY_SIZE ) {
  -                // int ???... 
  +                // Bug 1326: it's an Integer.
                req.setAttribute("javax.servlet.request.key_size",
  -                              Integer.toString(msg.getInt()));
  +                                 new Integer( msg.getInt()));
  +            //Integer.toString(msg.getInt()));
               }
   
               if( attributeCode == SC_A_REQ_ATTRIBUTE ) {
  
  
  

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

Reply via email to