You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by re...@apache.org on 2003/09/11 20:24:26 UTC

cvs commit: httpd-2.0/modules/experimental cache_storage.c mod_cache.c

rederpj     2003/09/11 11:24:26

  Modified:    .        CHANGES
               modules/experimental cache_storage.c mod_cache.c
  Log:
  Fix a couple of AIX xlc_r compiler issues in the cache code I previously
  committed. [Paul J. Reder]
  
  Revision  Changes    Path
  1.1271    +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.1270
  retrieving revision 1.1271
  diff -u -r1.1270 -r1.1271
  --- CHANGES	11 Sep 2003 14:56:03 -0000	1.1270
  +++ CHANGES	11 Sep 2003 18:24:25 -0000	1.1271
  @@ -2,6 +2,9 @@
   
     [Remove entries to the current 2.0 section below, when backported]
   
  +  *) Fix a couple of AIX xlc_r compiler issues in the code I just
  +     committed. [Paul J. Reder]
  +
     *) Modified the cache code to be header-location agnostic. Also
        fixed a number of other cache code bugs related to PR 15852.
        Includes a patch submitted by Sushma Rai <rs...@novell.com>.
  
  
  
  1.30      +1 -1      httpd-2.0/modules/experimental/cache_storage.c
  
  Index: cache_storage.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/cache_storage.c,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- cache_storage.c	11 Sep 2003 14:56:03 -0000	1.29
  +++ cache_storage.c	11 Sep 2003 18:24:26 -0000	1.30
  @@ -187,7 +187,7 @@
           switch ((rv = cache_run_open_entity(h, r, type, key))) {
           case OK: {
               char *vary = NULL;
  -            char *varyhdr = NULL;
  +            const char *varyhdr = NULL;
               if (cache_read_entity_headers(h, r) != APR_SUCCESS) {
                   /* TODO: Handle this error */
                   return DECLINED;
  
  
  
  1.76      +1 -1      httpd-2.0/modules/experimental/mod_cache.c
  
  Index: mod_cache.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/mod_cache.c,v
  retrieving revision 1.75
  retrieving revision 1.76
  diff -u -r1.75 -r1.76
  --- mod_cache.c	11 Sep 2003 14:56:03 -0000	1.75
  +++ mod_cache.c	11 Sep 2003 18:24:26 -0000	1.76
  @@ -799,7 +799,7 @@
   
       info->content_type = apr_pstrdup(r->pool, r->content_type);
       info->etag = apr_pstrdup(r->pool, etag);
  -    info->lastmod = apr_pstrdup(r->pool, lastmods);
  +    info->lastmods = apr_pstrdup(r->pool, lastmods);
       info->filename = apr_pstrdup(r->pool, r->filename );
   
       /*
  
  
  

Re: cvs commit: httpd-2.0/modules/experimental cache_storage.c mod_cache.c

Posted by Jeff Trawick <tr...@attglobal.net>.
rederpj@apache.org wrote:

> rederpj     2003/09/11 11:24:26
> 
>   Modified:    .        CHANGES
>                modules/experimental cache_storage.c mod_cache.c
>   Log:
>   Fix a couple of AIX xlc_r compiler issues in the cache code I previously
>   committed. [Paul J. Reder]
>   
>   Revision  Changes    Path
>   1.1271    +3 -0      httpd-2.0/CHANGES
>   
>   Index: CHANGES
>   ===================================================================
>   RCS file: /home/cvs/httpd-2.0/CHANGES,v
>   retrieving revision 1.1270
>   retrieving revision 1.1271
>   diff -u -r1.1270 -r1.1271
>   --- CHANGES	11 Sep 2003 14:56:03 -0000	1.1270
>   +++ CHANGES	11 Sep 2003 18:24:25 -0000	1.1271
>   @@ -2,6 +2,9 @@
>    
>      [Remove entries to the current 2.0 section below, when backported]
>    
>   +  *) Fix a couple of AIX xlc_r compiler issues in the code I just
>   +     committed. [Paul J. Reder]

There's no need for this in CHANGES, as it isn't user-visible from one 
release to the next.



Re: cvs commit: httpd-2.0/modules/experimental cache_storage.c mod_cache.c

Posted by Jeff Trawick <tr...@attglobal.net>.
rederpj@apache.org wrote:

> rederpj     2003/09/11 11:24:26
> 
>   Modified:    .        CHANGES
>                modules/experimental cache_storage.c mod_cache.c
>   Log:
>   Fix a couple of AIX xlc_r compiler issues in the cache code I previously
>   committed. [Paul J. Reder]
>   
>   Revision  Changes    Path
>   1.1271    +3 -0      httpd-2.0/CHANGES
>   
>   Index: CHANGES
>   ===================================================================
>   RCS file: /home/cvs/httpd-2.0/CHANGES,v
>   retrieving revision 1.1270
>   retrieving revision 1.1271
>   diff -u -r1.1270 -r1.1271
>   --- CHANGES	11 Sep 2003 14:56:03 -0000	1.1270
>   +++ CHANGES	11 Sep 2003 18:24:25 -0000	1.1271
>   @@ -2,6 +2,9 @@
>    
>      [Remove entries to the current 2.0 section below, when backported]
>    
>   +  *) Fix a couple of AIX xlc_r compiler issues in the code I just
>   +     committed. [Paul J. Reder]

There's no need for this in CHANGES, as it isn't user-visible from one 
release to the next.