You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bn...@apache.org on 2001/10/04 02:27:24 UTC

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

bnicholes    01/10/03 17:27:24

  Modified:    src/modules/proxy proxy_http.c
  Log:
  Eliminating a compiler warning
  
  Revision  Changes    Path
  1.77      +2 -2      apache-1.3/src/modules/proxy/proxy_http.c
  
  Index: proxy_http.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/proxy/proxy_http.c,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- proxy_http.c	2001/09/28 05:28:59	1.76
  +++ proxy_http.c	2001/10/04 00:27:24	1.77
  @@ -171,8 +171,8 @@
   		       const char *proxyhost, int proxyport)
   {
       const char *strp;
  -    char *strp2, *pragma;
  -    const char *err, *desthost;
  +    char *strp2;
  +    const char *err, *desthost, *pragma;
       int i, j, sock, len, backasswards;
       array_header *reqhdrs_arr;
       table *resp_hdrs;