From: Daniel Stenberg Date: Fri, 20 Feb 2004 07:14:58 +0000 (+0000) Subject: %HTTPPORT supported in subVariables X-Git-Tag: cares-1_1_0~219 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ccde85d1980b3b9162c3b1a6f092d8bfefd03c0e;p=curl %HTTPPORT supported in subVariables --- diff --git a/tests/runtests.pl b/tests/runtests.pl index ffab484cb..944418d2d 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -723,6 +723,7 @@ sub subVariables { my ($thing) = @_; $$thing =~ s/%HOSTIP/$HOSTIP/g; $$thing =~ s/%HOSTPORT/$HOSTPORT/g; + $$thing =~ s/%HTTPPORT/$HOSTPORT/g; $$thing =~ s/%HTTPSPORT/$HTTPSPORT/g; $$thing =~ s/%FTPPORT/$FTPPORT/g; $$thing =~ s/%FTPSPORT/$FTPSPORT/g;