If either of these couldn't be determined, the output would be missing a
newline. Make sure the line ends even in the case of an error.
}
my $hostname=join(' ', runclientoutput("hostname"));
+ chomp $hostname;
my $hosttype=join(' ', runclientoutput("uname -a"));
+ chomp $hosttype;
my $hostos=$^O;
# display summary information about curl and the test host
"* $libcurl\n",
"* Features: $feat\n",
"* Disabled: $dis\n",
- "* Host: $hostname",
- "* System: $hosttype",
+ "* Host: $hostname\n",
+ "* System: $hosttype\n",
"* OS: $hostos\n");
if($jobs) {