You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Roy Fielding <fi...@hyperreal.com> on 1996/08/14 07:18:46 UTC

cvs commit: apache/src http_main.c

fielding    96/08/13 22:18:46

  Modified:    src       http_main.c
  Log:
  Removed global static declaration of wait_or_timeout_retval that was
  never used (because it is overridden by a local declaration of
  wait_or_timeout_retval in the only routine where it is used).
  
  Revision  Changes    Path
  1.58      +0 -1      apache/src/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_main.c,v
  retrieving revision 1.57
  retrieving revision 1.58
  diff -C3 -r1.57 -r1.58
  *** http_main.c	1996/08/02 20:39:14	1.57
  --- http_main.c	1996/08/14 05:18:45	1.58
  ***************
  *** 935,941 ****
     */
    
    static JMP_BUF wait_timeout_buf;
  - static int wait_or_timeout_retval = -1;
    
    static void longjmp_out_of_alarm (int sig) {
    #if defined(NEXT) || defined(USE_LONGJMP)
  --- 935,940 ----