You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by "Ralf S. Engelschall" <rs...@apache.org> on 1998/08/03 11:30:58 UTC

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

rse         98/08/03 02:30:57

  Modified:    src/modules/proxy mod_proxy.c
  Log:
  Fix the following warning because of a missing prototype:
  
  rse@en1:/e/apache/SRC/apache-1.3/src/modules/proxy
  :> make
  gcc -c  -I../../os/unix -I../../include   -funsigned-char -DSTATUS -pipe -O
  -Wall -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes
  -Wmissing-declarations -Wnested-externs -Winline `../../apaci` mod_proxy.c
  mod_proxy.c: In function `proxy_handler':
  mod_proxy.c:305: warning: implicit declaration of function `ap_die'
  rm -f libproxy.a
  ar cr libproxy.a mod_proxy.o  proxy_cache.o proxy_connect.o proxy_ftp.o
  proxy_http.o proxy_util.o
  ranlib libproxy.a
  
  Revision  Changes    Path
  1.57      +4 -0      apache-1.3/src/modules/proxy/mod_proxy.c
  
  Index: mod_proxy.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/mod_proxy.c,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- mod_proxy.c	1998/07/21 15:39:42	1.56
  +++ mod_proxy.c	1998/08/03 09:30:56	1.57
  @@ -56,8 +56,12 @@
    */
   
   #include "mod_proxy.h"
  +
  +#define CORE_PRIVATE
  +
   #include "http_log.h"
   #include "http_vhost.h"
  +#include "http_request.h"
   
   /* Some WWW schemes and their default ports; this is basically /etc/services */
   /* This will become global when the protocol abstraction comes */