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  Changes    Path
  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
  --- STATUS    1998/12/31 14:09:11     1.579
  +++ STATUS    1998/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();
  
  
  

Reply via email to