diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-20 07:14:58 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-20 07:14:58 +0000 |
commit | ccde85d1980b3b9162c3b1a6f092d8bfefd03c0e (patch) | |
tree | 508bf16a26bb6827d5b9f43a9a1ab722b929cf81 | |
parent | 9e7657d6edaf71e3b0b93853b9428f10af239ab2 (diff) |
%HTTPPORT supported in subVariables
-rwxr-xr-x | tests/runtests.pl | 1 |
1 files changed, 1 insertions, 0 deletions
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; |