cvs commit: apache-1.3/src/os/bs2000 os.h

1999-03-11 Thread martin
martin  99/03/11 01:57:36

  Modified:src/os/bs2000 os.h
  Log:
  Fix prototype for changed os_fork() function
  
  Revision  ChangesPath
  1.16  +1 -1  apache-1.3/src/os/bs2000/os.h
  
  Index: os.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/os/bs2000/os.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- os.h  1999/01/08 23:46:43 1.15
  +++ os.h  1999/03/11 09:57:36 1.16
  @@ -37,6 +37,6 @@
* to use request_rec here... */
   struct request_rec;
   extern int ap_checkconv(struct request_rec *r);
  -extern pid_t os_fork(void);
  +extern pid_t os_fork(const char *user);
   
   #endif /*! APACHE_OS_H*/
  
  
  


cvs commit: apache-1.3/src CHANGES

1999-03-11 Thread dgaudet
dgaudet 99/03/11 08:47:59

  Modified:src  CHANGES
  Log:
  should really say SECURITY on this line
  
  Revision  ChangesPath
  1.1279+5 -4  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1278
  retrieving revision 1.1279
  diff -u -r1.1278 -r1.1279
  --- CHANGES   1999/03/10 18:09:40 1.1278
  +++ CHANGES   1999/03/11 16:47:56 1.1279
  @@ -16,10 +16,11 @@
DSO/DLL section because it's a directive from mod_status and isn't
available before the DLL of mod_status is loaded.
[Martin POESCHL [EMAIL PROTECTED]] PR#3936
  - 
  -  *) Fix a bug in the calculation of the buffer size for the line 
continuation
  - facility in Apache's configuration files which could lead to a buffer
  - overflow situation. [Thomas Devanneaux [EMAIL PROTECTED]] PR#3617
  +
  +  *) SECURITY: Fix a bug in the calculation of the buffer size for the line 
  + continuation facility in Apache's configuration files which could 
  + lead to a buffer overflow situation.
  + [Thomas Devanneaux [EMAIL PROTECTED]] PR#3617
   
 *) Make documentation and error messages of APACI's --activate-module=FILE 
option more clear. [Jan Wolter [EMAIL PROTECTED]] PR#3995
  
  
  


cvs commit: apache-1.3/src/main http_log.c

1999-03-11 Thread dgaudet
dgaudet 99/03/11 08:52:39

  Modified:src/main http_log.c
  Log:
  remove the extra httpd:  logged for each error message
  
  Reviewed by:  Marc Slemko, Ralf S. Engelschall
  
  Revision  ChangesPath
  1.76  +1 -2  apache-1.3/src/main/http_log.c
  
  Index: http_log.c
  ===
  RCS file: /home/cvs/apache-1.3/src/main/http_log.c,v
  retrieving revision 1.75
  retrieving revision 1.76
  diff -u -r1.75 -r1.76
  --- http_log.c1999/01/01 19:04:48 1.75
  +++ http_log.c1999/03/11 16:52:38 1.76
  @@ -322,8 +322,7 @@
   }
   
   if (logf) {
  - len = ap_snprintf(errstr, sizeof(errstr), %s: [%s] ,
  -   ap_server_argv0, ap_get_time());
  + len = ap_snprintf(errstr, sizeof(errstr), [%s] , ap_get_time());
   } else {
len = 0;
   }