You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@locus.apache.org on 2000/10/07 18:20:03 UTC

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

rse         00/10/07 09:20:02

  Modified:    src/modules/proxy proxy_util.c
  Log:
  Fix prototype to get rid of:
  proxy_util.c:1320: warning: `get_per_thread_data' was used with no prototype
  before its definition
  
  Revision  Changes    Path
  1.92      +2 -2      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.91
  retrieving revision 1.92
  diff -u -r1.91 -r1.92
  --- proxy_util.c	2000/09/28 13:32:39	1.91
  +++ proxy_util.c	2000/10/07 16:20:01	1.92
  @@ -68,7 +68,7 @@
   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);
  -static struct per_thread_data *get_per_thread_data();
  +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)
   {
  @@ -1316,7 +1316,7 @@
   
   #endif
   
  -static struct per_thread_data *get_per_thread_data()
  +static struct per_thread_data *get_per_thread_data(void)
   {
   #if defined(WIN32)