summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-11-26 08:41:39 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-11-26 08:41:39 +0000
commita34a4af36af3497a5784660d25efd55814479d55 (patch)
treef28a26cafc8cc1945461b1c7be4d6a419d446169 /tests
parentbf51f05a50a63ade21316a18d2bf1801767ab234 (diff)
downloadcurl-a34a4af36af3497a5784660d25efd55814479d55.tar.gz
last-second-before-commit changes corrected
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index aba8c7649..13a84d1c4 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -668,6 +668,7 @@ sub checkcurl {
unlink($memdump); # remove this if there was one left
+ my $feat;
my $curl;
my $libcurl;
my @version=`$CURL --version 2>/dev/null`;
@@ -740,7 +741,7 @@ sub checkcurl {
# at this point
}
elsif($_ =~ /^Features: (.*)/i) {
- my $feat = $1;
+ $feat = $1;
if($feat =~ /debug/i) {
# debug is a listed "feature", use that knowledge
$curl_debug = 1;
@@ -788,7 +789,7 @@ sub checkcurl {
print "********* System characteristics ******** \n",
"* $curl\n",
"* $libcurl\n",
- "* Features: $feat\n"
+ "* Features: $feat\n",
"* Host: $hostname",
"* System: $hosttype";