rse         98/04/07 23:30:48

  Modified:    src/include http_protocol.h
               src/main http_protocol.c
  Log:
  Change parse_uri back to a core function on Dean and Martins request.
  
  Revision  Changes    Path
  1.40      +1 -1      apache-1.3/src/include/http_protocol.h
  
  Index: http_protocol.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/http_protocol.h,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- http_protocol.h   1998/04/06 07:26:24     1.39
  +++ http_protocol.h   1998/04/08 06:30:46     1.40
  @@ -203,6 +203,6 @@
   
   /* This is also useful for putting sub_reqs and internal_redirects together 
*/
   
  -API_EXPORT(void) parse_uri(request_rec *r, const char *uri);
  +CORE_EXPORT(void) parse_uri(request_rec *r, const char *uri);
   
   #endif       /* !APACHE_HTTP_PROTOCOL_H */
  
  
  
  1.210     +1 -1      apache-1.3/src/main/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/http_protocol.c,v
  retrieving revision 1.209
  retrieving revision 1.210
  diff -u -r1.209 -r1.210
  --- http_protocol.c   1998/04/06 07:26:28     1.209
  +++ http_protocol.c   1998/04/08 06:30:47     1.210
  @@ -575,7 +575,7 @@
    * - sets r->uri to request uri (without r->args part)
    * - sets r->hostname (if not set already) from request (scheme://host:port)
    */
  -API_EXPORT(void) parse_uri(request_rec *r, const char *uri)
  +CORE_EXPORT(void) parse_uri(request_rec *r, const char *uri)
   {
       int status = HTTP_OK;
   
  
  
  

Reply via email to