You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2002/08/18 05:23:06 UTC

cvs commit: httpd-2.0/modules/experimental cache_cache.c cache_cache.h

stoddard    2002/08/17 20:23:06

  Modified:    modules/experimental cache_cache.c cache_cache.h
  Log:
  Fix compile break
  
  Revision  Changes    Path
  1.2       +4 -4      httpd-2.0/modules/experimental/cache_cache.c
  
  Index: cache_cache.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/cache_cache.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- cache_cache.c	6 Jun 2002 19:07:09 -0000	1.1
  +++ cache_cache.c	18 Aug 2002 03:23:06 -0000	1.2
  @@ -21,8 +21,8 @@
       long            queue_clock;
       cache_hash_t   *ht;
       cache_pqueue_t *pq;
  -    cache_pqueue_set_priority* set_pri;
  -    cache_pqueue_get_priority* get_pri;
  +    cache_pqueue_set_priority set_pri;
  +    cache_pqueue_get_priority get_pri;
       cache_cache_inc_frequency *inc_entry;
       cache_cache_get_size *size_entry;
       cache_cache_get_key *key_entry;
  @@ -31,8 +31,8 @@
   
   CACHE_DECLARE(cache_cache_t *)cache_init(int max_entries,
                                            apr_size_t max_size,
  -                                         cache_pqueue_get_priority *get_pri,
  -                                         cache_pqueue_set_priority *set_pri,
  +                                         cache_pqueue_get_priority get_pri,
  +                                         cache_pqueue_set_priority set_pri,
                                            cache_pqueue_getpos get_pos,
                                            cache_pqueue_setpos set_pos,
                                            cache_cache_inc_frequency *inc_entry,
  
  
  
  1.2       +2 -2      httpd-2.0/modules/experimental/cache_cache.h
  
  Index: cache_cache.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/cache_cache.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- cache_cache.h	6 Jun 2002 19:07:09 -0000	1.1
  +++ cache_cache.h	18 Aug 2002 03:23:06 -0000	1.2
  @@ -102,8 +102,8 @@
    */
   CACHE_DECLARE(cache_cache_t *)cache_init(int max_entries, 
                                            apr_size_t max_size,
  -                                         cache_pqueue_get_priority *get_pri,
  -                                         cache_pqueue_set_priority *set_pri,
  +                                         cache_pqueue_get_priority get_pri,
  +                                         cache_pqueue_set_priority set_pri,
                                            cache_pqueue_getpos get_pos,
                                            cache_pqueue_setpos set_pos,
                                            cache_cache_inc_frequency *inc_entry,