martin      98/02/20 02:44:36

  Modified:    src      CHANGES
               src/modules/standard mod_info.c
  Log:
  mod_info would occasionally produce an unpaired <tt> in its output. Fixed.
  
  Revision  Changes    Path
  1.641     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.640
  retrieving revision 1.641
  diff -u -u -r1.640 -r1.641
  --- CHANGES   1998/02/20 07:02:42     1.640
  +++ CHANGES   1998/02/20 10:44:32     1.641
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3b6
   
  +  *)  mod_info would occasionally produce an unpaired <tt> in its
  +      output. Fixed. [Martin Kraemer]
  +
     *)  By default AIX binds a process (and it's children) to a single
         processor.  httpd children now unbind themselves from that cpu
         and re-bind to one selected at random via bindprocessor()
  
  
  
  1.36      +2 -1      apache-1.3/src/modules/standard/mod_info.c
  
  Index: mod_info.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_info.c,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -u -r1.35 -r1.36
  --- mod_info.c        1998/01/29 20:36:13     1.35
  +++ mod_info.c        1998/02/20 10:44:35     1.36
  @@ -318,8 +318,9 @@
                       if (li->line) {
                           rputs(" <i>", r);
                           rputs(mod_info_html_cmd_string(li->line, buf, 
sizeof(buf)), r);
  -                        rputs("</i></tt>", r);
  +                        rputs("</i>", r);
                       }
  +                 rputs("</tt>", r);
                   }
               }
               else
  
  
  

Reply via email to