mturk       2005/03/18 00:15:30

  Modified:    jk/native/common jk_connect.c
  Log:
  Fix compile time warning about unused arg.
  
  Revision  Changes    Path
  1.50      +8 -2      jakarta-tomcat-connectors/jk/native/common/jk_connect.c
  
  Index: jk_connect.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_connect.c,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- jk_connect.c      17 Mar 2005 19:49:23 -0000      1.49
  +++ jk_connect.c      18 Mar 2005 08:15:30 -0000      1.50
  @@ -553,7 +553,13 @@
       fd_set fd;
       struct timeval tv;
       int rc;
  -
  +    
  +    /* socket_timeout is unused in select implemention
  +     * If we change this to non blocking read, then we
  +     * will use the timeout parameter.
  +     */
  +     timeout;
  +     
       FD_ZERO(&fd);
       FD_SET(sd, &fd);
   
  
  
  

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

Reply via email to