You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@hyperreal.org on 1999/12/04 23:17:49 UTC

cvs commit: apache-2.0/src CHANGES

rbb         99/12/04 14:17:49

  Modified:    src      CHANGES
  Log:
  Update the CHANGES file with some of the bigger changes I have made
  recently both for myself and others.  I proise I'll try to stay on top
  of this file from now on.  :-)
  
  Revision  Changes    Path
  1.17      +20 -0     apache-2.0/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/CHANGES,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- CHANGES	1999/10/31 09:13:20	1.16
  +++ CHANGES	1999/12/04 22:17:48	1.17
  @@ -1,4 +1,24 @@
   Changes with Apache 2.0-dev
  +  
  +  *) Added APLOG_STARTUP log type.  This allows us to write an error
  +     message without any of the date and time information.  As a part
  +     of this change, I also removed all of the calls to fprintf(stderr
  +     and replaced them with calls to ap_log_error using APLOG_STARTUP
  +     writing to stderr is no longer portable, because we don't direct 
  +     stderr to the error log on all platforms.
  +     [Ryan Bloom] 
  + 
  +  *) Convert error logging functions to take errno as an argument.
  +     This makes our error logs more portable, because some Windows API's 
  +     don't set errno.  This change allows us to still output a valid
  +     message on all of our platforms.
  +     [Ryan Bloom]
  +
  +  *) mod_mime_magic runs in 2.0-dev now.
  +     [Paul Reder <re...@raleigh.ibm.com>]
  +
  +  *) sendfile has been added to APR.
  +     [John Zedlewski <ze...@Princeton.EDU>]
   
     *) buff.c has been converted to no longer use errno.
        [Manoj Kasichainula]