]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Clean up warnings pointed out by WRowe
authorChuck Murcko <chuck@apache.org>
Tue, 26 Feb 2002 18:01:28 +0000 (18:01 +0000)
committerChuck Murcko <chuck@apache.org>
Tue, 26 Feb 2002 18:01:28 +0000 (18:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@93575 13f79535-47bb-0310-9956-ffa450edef68

src/modules/proxy/mod_proxy.h
src/modules/proxy/proxy_ftp.c
src/modules/proxy/proxy_util.c

index 0786e9e6063517b970f2a04c82e44a56c3360e55..618b68418ec61e81d87274f8869698a28be958cd 100644 (file)
@@ -318,6 +318,7 @@ BUFF *ap_proxy_open_cachefile(request_rec *r, char *filename);
 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 */
 
index 045ef46381c39442e2e0c3cda08376e5c6bdf26c..1eb0b3b9c4935ac28cff7ce901782d3727bce1b5 100644 (file)
@@ -271,7 +271,7 @@ static long int send_dir(BUFF *data, request_rec *r, cache_req *c, char *cwd)
     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;
index 665417eed905d58838194a62d536c876870a3969..6722ee85d511323fc7052407eb732c6f72a1adfa 100644 (file)
@@ -69,7 +69,6 @@ static int proxy_match_ipaddr(struct dirconn_entry *This, request_rec *r);
 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)