Applied. Thanks!

On Wed, Dec 03, 2003 at 09:09:29PM -0500, Garrett Rooney wrote:
> serf_get.c currently won't build against a current apr-util because 
> it's using a deprecated function that was recently removed.  the 
> trivial patch to fix this is included.
> 
> -garrett
> 
> Index: test/serf_get.c
> ===================================================================
> --- test/serf_get.c     (revision 132)
> +++ test/serf_get.c     (working copy)
> @@ -365,7 +365,7 @@
> 
>       apr_uri_parse(pool, raw_url, &url);
>       if (!url.port) {
> -        url.port = apr_uri_default_port_for_scheme(url.scheme);
> +        url.port = apr_uri_port_of_scheme(url.scheme);
>       }
>   #if SERF_HAS_OPENSSL
>       if (strcasecmp(url.scheme, "https") == 0) {
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Greg Stein, http://www.lyra.org/

Reply via email to