brian       98/05/19 16:48:37

  Modified:    src/modules/standard mod_include.c mod_log_agent.c
                        mod_log_referer.c
  Log:
  Added some error warnings back.
  
  Revision  Changes    Path
  1.90      +2 -0      apache-1.3/src/modules/standard/mod_include.c
  
  Index: mod_include.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_include.c,v
  retrieving revision 1.89
  retrieving revision 1.90
  diff -u -r1.89 -r1.90
  --- mod_include.c     1998/05/19 22:49:03     1.89
  +++ mod_include.c     1998/05/19 23:48:35     1.90
  @@ -818,6 +818,8 @@
   
       if (!ap_spawn_child_err_buff(r->pool, include_cmd_child, &arg,
                        kill_after_timeout, NULL, &script_in, NULL)) {
  +        ap_log_error(APLOG_MARK, APLOG_ERR, r->server,
  +                  "couldn't spawn include command");
           return -1;
       }
   
  
  
  
  1.26      +2 -0      apache-1.3/src/modules/standard/mod_log_agent.c
  
  Index: mod_log_agent.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_log_agent.c,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- mod_log_agent.c   1998/05/19 22:49:03     1.25
  +++ mod_log_agent.c   1998/05/19 23:48:36     1.26
  @@ -117,6 +117,8 @@
   
           pl = ap_open_piped_log(p, cls->fname + 1);
           if (pl == NULL) {
  +         ap_log_error(APLOG_MARK, APLOG_ERR, s,
  +                      "couldn't spawn agent log pipe");
               exit(1);
           }
           cls->agent_fd = ap_piped_log_write_fd(pl);
  
  
  
  1.27      +2 -0      apache-1.3/src/modules/standard/mod_log_referer.c
  
  Index: mod_log_referer.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_log_referer.c,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- mod_log_referer.c 1998/05/19 22:49:03     1.26
  +++ mod_log_referer.c 1998/05/19 23:48:36     1.27
  @@ -132,6 +132,8 @@
   
        pl = ap_open_piped_log(p, cls->fname + 1);
        if (pl == NULL) {
  +         ap_log_error(APLOG_MARK, APLOG_ERR, s,
  +                      "couldn't spawn referer log pipe");
               exit(1);
           }
   
  
  
  

Reply via email to