From 51ffa0efe9c17d50bff598caa76901da6e2cf08a Mon Sep 17 00:00:00 2001 From: Brian Pane Date: Wed, 1 May 2002 06:41:36 +0000 Subject: [PATCH] Eliminate some sprintf calls git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94885 13f79535-47bb-0310-9956-ffa450edef68 --- server/vhost.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/vhost.c b/server/vhost.c index 03e89481cf..aadc19288a 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 -- 2.50.1