You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/09/14 22:43:22 UTC

cvs commit: apache-2.0/src/main http_protocol.c http_request.c

trawick     00/09/14 13:43:20

  Modified:    src/main http_protocol.c http_request.c
  Log:
  Get rid of some unused variables introduced in recent method work.
  
  Revision  Changes    Path
  1.126     +0 -1      apache-2.0/src/main/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_protocol.c,v
  retrieving revision 1.125
  retrieving revision 1.126
  diff -u -r1.125 -r1.126
  --- http_protocol.c	2000/09/14 05:08:41	1.125
  +++ http_protocol.c	2000/09/14 20:43:14	1.126
  @@ -1775,7 +1775,6 @@
   				       const char *method)
   {
       int methnum;
  -    const char **xmethod;
       char **methods;
   
       /*
  
  
  
  1.48      +2 -3      apache-2.0/src/main/http_request.c
  
  Index: http_request.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_request.c,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- http_request.c	2000/09/13 22:24:46	1.47
  +++ http_request.c	2000/09/14 20:43:14	1.48
  @@ -1445,10 +1445,9 @@
       }
   }
   
  -API_EXPORT(void) ap_allow_methods(request_rec *r, int reset, ...) {
  -    int mnum;
  +API_EXPORT(void) ap_allow_methods(request_rec *r, int reset, ...) 
  +{
       const char *method;
  -    const char **xmethod;
       va_list methods;
   
       /*