You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ch...@apache.org on 2002/02/26 19:01:28 UTC

cvs commit: apache-1.3/src/modules/proxy mod_proxy.h proxy_ftp.c proxy_util.c

chuck       02/02/26 10:01:28

  Modified:    src/modules/proxy mod_proxy.h proxy_ftp.c proxy_util.c
  Log:
  Clean up warnings pointed out by WRowe
  
  Revision  Changes    Path
  1.55      +1 -0      apache-1.3/src/modules/proxy/mod_proxy.h
  
  Index: mod_proxy.h
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/proxy/mod_proxy.h,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -d -b -u -r1.54 -r1.55
  --- mod_proxy.h	21 Feb 2002 06:03:08 -0000	1.54
  +++ mod_proxy.h	26 Feb 2002 18:01:28 -0000	1.55
  @@ -318,6 +318,7 @@
   BUFF *ap_proxy_create_cachefile(request_rec *r, char *filename);
   void ap_proxy_clear_connection(pool *p, table *headers);
   int ap_proxy_table_replace(table *base, table *overlay);
  +void ap_proxy_table_unmerge(pool *p, table *t, char *key);
   
   /* WARNING - PRIVATE DEFINITION BELOW */
   
  
  
  
  1.94      +1 -1      apache-1.3/src/modules/proxy/proxy_ftp.c
  
  Index: proxy_ftp.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/proxy/proxy_ftp.c,v
  retrieving revision 1.93
  retrieving revision 1.94
  diff -u -d -b -u -r1.93 -r1.94
  --- proxy_ftp.c	21 Feb 2002 06:03:08 -0000	1.93
  +++ proxy_ftp.c	26 Feb 2002 18:01:28 -0000	1.94
  @@ -271,7 +271,7 @@
       char *searchptr = NULL;
       int firstfile = 1;
       unsigned long total_bytes_sent = 0;
  -    register int n, o, w;
  +    register int n;
       conn_rec *con = r->connection;
       pool *p = r->pool;
       char *dir, *path, *reldir, *site, *type = NULL;
  
  
  
  1.106     +0 -1      apache-1.3/src/modules/proxy/proxy_util.c
  
  Index: proxy_util.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/proxy/proxy_util.c,v
  retrieving revision 1.105
  retrieving revision 1.106
  diff -u -d -b -u -r1.105 -r1.106
  --- proxy_util.c	21 Feb 2002 06:03:08 -0000	1.105
  +++ proxy_util.c	26 Feb 2002 18:01:28 -0000	1.106
  @@ -69,7 +69,6 @@
   static int proxy_match_domainname(struct dirconn_entry *This, request_rec *r);
   static int proxy_match_hostname(struct dirconn_entry *This, request_rec *r);
   static int proxy_match_word(struct dirconn_entry *This, request_rec *r);
  -void ap_proxy_table_unmerge(pool *p, table *t, char *key);
   static struct per_thread_data *get_per_thread_data(void);
   /* already called in the knowledge that the characters are hex digits */
   int ap_proxy_hex2c(const char *x)