cvs commit: apache-1.3 STATUS

1998-12-31 Thread jim
jim 98/12/30 17:10:55

  Modified:.STATUS
  Log:
  Updates
  
  Revision  ChangesPath
  1.578 +3 -1  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.577
  retrieving revision 1.578
  diff -u -r1.577 -r1.578
  --- STATUS1998/12/31 00:44:12 1.577
  +++ STATUS1998/12/31 01:10:54 1.578
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/31 00:44:12 $]
  +  Last modified at [$Date: 1998/12/31 01:10:54 $]
   
   Release:
   
  @@ -23,6 +23,8 @@
   * Version component misbehaviour
   See: [EMAIL PROTECTED]
   Status: Ralf mentioned that he knows a solution... (?)
  + Is this the module placing it's token first? If so, I have
  + a patch: Jim
   
   * Paul's [PATCH] Win32 device files
   Message-ID: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-31 Thread lars
lars98/12/31 06:09:11

  Modified:.STATUS
  Log:
  wrong name :-)
  
  Revision  ChangesPath
  1.579 +2 -2  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.578
  retrieving revision 1.579
  diff -u -r1.578 -r1.579
  --- STATUS1998/12/31 01:10:54 1.578
  +++ STATUS1998/12/31 14:09:11 1.579
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/31 01:10:54 $]
  +  Last modified at [$Date: 1998/12/31 14:09:11 $]
   
   Release:
   
  @@ -108,7 +108,7 @@
 First pass for concept; maybe directive should be renamed or
 syntax changed?
Message-ID: [EMAIL PROTECTED]
  - Status: Ken +1 (concept), Lars +1 (concept)
  + Status: Ken +1 (concept), Martin +1 (concept)
   
   * Lars' 'binbuild' patch
   Message-ID: [EMAIL PROTECTED]
  
  
  


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

1998-12-31 Thread jim
jim 98/12/31 07:54:20

  Modified:.STATUS
   src  CHANGES
   src/main http_main.c
  Log:
  The Module Apache Module Server token problem with
  DSO fixed
  
  Revision  ChangesPath
  1.580 +3 -4  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.579
  retrieving revision 1.580
  diff -u -r1.579 -r1.580
  --- STATUS1998/12/31 14:09:11 1.579
  +++ STATUS1998/12/31 15:54:16 1.580
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/31 14:09:11 $]
  +  Last modified at [$Date: 1998/12/31 15:54:16 $]
   
   Release:
   
  @@ -22,9 +22,8 @@
   
   * Version component misbehaviour
   See: [EMAIL PROTECTED]
  -Status: Ralf mentioned that he knows a solution... (?)
  - Is this the module placing it's token first? If so, I have
  - a patch: Jim
  +Status: Server token problem is fixed. Ralf still looking at
  + the double module init stuff.
   
   * Paul's [PATCH] Win32 device files
   Message-ID: [EMAIL PROTECTED]
  
  
  
  1.1184+4 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1183
  retrieving revision 1.1184
  diff -u -r1.1183 -r1.1184
  --- CHANGES   1998/12/30 01:20:14 1.1183
  +++ CHANGES   1998/12/31 15:54:17 1.1184
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3.4
   
  +  *) Using DSO, the Server token was being mangled. Specifically, the
  + module's token was being added first before the Apache token. This
  + has been fixed. [Jim Jagielski]
  +
 *) Major overhaul of mod_negotiation.c.
- cleanups to mod_negotiation comments and code structure
- made compliant with HTTP/1.1 proposed standard (rfc2068) and added
  
  
  
  1.415 +2 -0  apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.414
  retrieving revision 1.415
  diff -u -r1.414 -r1.415
  --- http_main.c   1998/12/24 13:39:48 1.414
  +++ http_main.c   1998/12/31 15:54:19 1.415
  @@ -4595,8 +4595,10 @@
BUFF *cio;
NET_SIZE_T l;
   
  + ap_set_version();
/* Yes this is called twice. */
ap_init_modules(pconf, server_conf);
  + version_locked++;
ap_open_logs(server_conf, pconf);
ap_init_modules(pconf, server_conf);
set_group_privs();