dgaudet     98/01/28 02:00:34

  Modified:    src      CHANGES
               src/main http_main.c
  Log:
  SIGURG doesn't exist everywhere.
  
  Submitted by: Mark Andrew Heinrich <[EMAIL PROTECTED]>
  Reviewed by:  Dean Gaudet
  
  Revision  Changes    Path
  1.603     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.602
  retrieving revision 1.603
  diff -u -r1.602 -r1.603
  --- CHANGES   1998/01/27 10:28:31     1.602
  +++ CHANGES   1998/01/28 10:00:25     1.603
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3b4
   
  +  *) SIGURG doesn't exist everywhere.
  +     [Mark Andrew Heinrich <[EMAIL PROTECTED]>]
  +
     *) mod_unique_id was erroneously generating a second unique id when
        an internal redirect occured.  Such redirects occur, for example,
        when processing a DirectoryIndex match.  [Dean Gaudet]
  
  
  
  1.277     +2 -0      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.276
  retrieving revision 1.277
  diff -u -r1.276 -r1.277
  --- http_main.c       1998/01/25 18:53:55     1.276
  +++ http_main.c       1998/01/28 10:00:30     1.277
  @@ -2946,7 +2946,9 @@
        */
       ap_setjmp(jmpbuffer);
   #ifndef __EMX__
  +#ifdef SIGURG
       signal(SIGURG, timeout);
  +#endif
   #endif
       signal(SIGPIPE, timeout);
       signal(SIGALRM, alrm_handler);
  
  
  

Reply via email to