martin      98/05/13 08:20:04

  Modified:    src/main http_main.c
  Log:
  Propagated child errors don't set errno
  
  Revision  Changes    Path
  1.352     +1 -1      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.351
  retrieving revision 1.352
  diff -u -u -r1.351 -r1.352
  --- http_main.c       1998/05/11 20:08:08     1.351
  +++ http_main.c       1998/05/13 15:20:02     1.352
  @@ -3907,7 +3907,7 @@
        */
       if ((WIFEXITED(status)) &&
        WEXITSTATUS(status) == APEXIT_CHILDFATAL) {
  -     ap_log_error(APLOG_MARK, APLOG_ALERT, server_conf,
  +     ap_log_error(APLOG_MARK, APLOG_ALERT|APLOG_NOERRNO, server_conf,
                        "Child %d returned a Fatal error... \n"
                        "Apache is exiting!",
                        pid);
  
  
  

Reply via email to