From: Brian Pane Date: Wed, 1 May 2002 06:41:36 +0000 (+0000) Subject: Eliminate some sprintf calls X-Git-Tag: 2.0.36~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e556e52b5993dde8c1680995aa1b0620a7740371;p=thirdparty%2Fapache%2Fhttpd.git Eliminate some sprintf calls git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94885 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/vhost.c b/server/vhost.c index 03e89481cfa..aadc19288af 100644 --- a/server/vhost.c +++ b/server/vhost.c @@ -760,7 +760,7 @@ static void fix_hostname(request_rec *r) * here to judge; apr_parse_addr_port() would think we had a port * but no address */ - host = apr_psprintf(r->pool, "%d", (int)port); + host = apr_itoa(r->pool, (int)port); } else if (port) { /* Don't throw the Host: header's port number away: @@ -769,7 +769,7 @@ static void fix_hostname(request_rec *r) * Like r->hostname, there should be a r->portno */ r->parsed_uri.port = port; - r->parsed_uri.port_str = apr_psprintf(r->pool, "%d", (int)port); + r->parsed_uri.port_str = apr_itoa(r->pool, (int)port); } /* if the hostname is an IPv6 numeric address string, it was validated