You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2001/08/07 21:34:58 UTC

cvs commit: httpd-2.0/modules/mappers mod_rewrite.c

trawick     01/08/07 12:34:58

  Modified:    .        CHANGES
               modules/mappers mod_rewrite.c
  Log:
  mod_rewrite: Fix the line ending on some non-Unix systems for
  messages written to the rewrite log.
  
  Submitted by: Richard Labennett <rl...@us.ibm.com>
  Reviewed by:  Jeff Trawick
  
  Revision  Changes    Path
  1.280     +4 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.279
  retrieving revision 1.280
  diff -u -r1.279 -r1.280
  --- CHANGES	2001/08/07 12:54:31	1.279
  +++ CHANGES	2001/08/07 19:34:57	1.280
  @@ -1,5 +1,9 @@
   Changes with Apache 2.0.23-dev
   
  +  *) mod_rewrite: Fix the line ending on some non-Unix systems for 
  +     messages written to the rewrite log.  
  +     [Richard Labennett <rl...@us.ibm.com>]
  +
     *) All mod_autoindex query parsing is now quietly quashed with the 
        IndexOption IgnoreClient.  The IndexOption SuppressColumnSorting 
        still drops the column sort <a href>'s for the column headers, but 
  
  
  
  1.81      +1 -1      httpd-2.0/modules/mappers/mod_rewrite.c
  
  Index: mod_rewrite.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_rewrite.c,v
  retrieving revision 1.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- mod_rewrite.c	2001/07/25 21:12:45	1.80
  +++ mod_rewrite.c	2001/08/07 19:34:58	1.81
  @@ -3209,7 +3209,7 @@
       }
   
       apr_snprintf(str3, sizeof(str3),
  -                "%s %s [%s/sid#%lx][rid#%lx/%s%s] (%d) %s\n", str1,
  +                "%s %s [%s/sid#%lx][rid#%lx/%s%s] (%d) %s" APR_EOL_STR, str1,
                   current_logtime(r), ap_get_server_name(r),
                   (unsigned long)(r->server), (unsigned long)r,
                   type, redir, level, str2);