rbb         99/12/11 12:29:18

  Modified:    src/main http_config.c
  Log:
  Use ap_open_stderr in http_config.c.  This cleans up some non-portable
  code that has been bothering me.
  
  Revision  Changes    Path
  1.20      +2 -2      apache-2.0/src/main/http_config.c
  
  Index: http_config.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_config.c,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- http_config.c     1999/11/18 23:07:11     1.19
  +++ http_config.c     1999/12/11 20:29:17     1.20
  @@ -73,6 +73,7 @@
   #define CORE_PRIVATE
   
   #include "apr_portable.h"
  +#include "apr_file_io.h"
   #include "httpd.h"
   #include "http_config.h"
   #include "http_core.h"
  @@ -1255,15 +1256,14 @@
   
   static server_rec *init_server_config(process_rec *process, ap_context_t *p)
   {
  -    ap_os_file_t errfile = STDERR_FILENO;
       server_rec *s = (server_rec *) ap_pcalloc(p, sizeof(server_rec));
   
  +    ap_open_stderr(&s->error_log, p);
       s->process = process;
       s->port = 0;
       s->server_admin = DEFAULT_ADMIN;
       s->server_hostname = NULL;
       s->error_fname = DEFAULT_ERRORLOG;
  -    ap_put_os_file(&s->error_log, &errfile, p);
       s->loglevel = DEFAULT_LOGLEVEL;
       s->srm_confname = RESOURCE_CONFIG_FILE;
       s->access_confname = ACCESS_CONFIG_FILE;
  
  
  

Reply via email to