You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by do...@apache.org on 2001/08/19 17:52:59 UTC

cvs commit: httpd-2.0/server scoreboard.c

dougm       01/08/19 08:52:59

  Modified:    modules/dav/main util.c
               server   scoreboard.c
  Log:
  adjust to UNP_ -> APR_URI_UNP_ rename
  
  Revision  Changes    Path
  1.32      +1 -1      httpd-2.0/modules/dav/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/dav/main/util.c,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- util.c	2001/05/22 01:31:04	1.31
  +++ util.c	2001/08/19 15:52:58	1.32
  @@ -288,7 +288,7 @@
          the current request. Therefore, we can use ap_sub_req_lookup_uri() */
   
       /* reconstruct a URI as just the path */
  -    new_file = apr_uri_unparse_components(r->pool, &comp, UNP_OMITSITEPART);
  +    new_file = apr_uri_unparse_components(r->pool, &comp, APR_URI_UNP_OMITSITEPART);
   
       /*
        * Lookup the URI and return the sub-request. Note that we use the
  
  
  
  1.34      +1 -1      httpd-2.0/server/scoreboard.c
  
  Index: scoreboard.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/scoreboard.c,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- scoreboard.c	2001/08/07 22:28:51	1.33
  +++ scoreboard.c	2001/08/19 15:52:59	1.34
  @@ -321,7 +321,7 @@
   	    } else {
   		/* Don't reveal the password in the server-status view */
   		    apr_cpystrn(ws->request, apr_pstrcat(r->pool, r->method, " ",
  -					       apr_uri_unparse_components(r->pool, &r->parsed_uri, UNP_OMITPASSWORD),
  +					       apr_uri_unparse_components(r->pool, &r->parsed_uri, APR_URI_UNP_OMITPASSWORD),
   					       r->assbackwards ? NULL : " ", r->protocol, NULL),
   				       sizeof(ws->request));
   	    }