tests:webclient: fix default version (string, not number...)

Michael
This commit is contained in:
Michael Adam 2009-09-20 13:24:06 +02:00
parent 2208bebeac
commit 87f7a79e89

View File

@ -30,7 +30,7 @@ my $VERSION = "0.1";
my $NAME = "Tinyproxy-Web-Client"; my $NAME = "Tinyproxy-Web-Client";
my $user_agent = "$NAME/$VERSION"; my $user_agent = "$NAME/$VERSION";
my $user_agent_header = "User-Agent: $user_agent$EOL"; my $user_agent_header = "User-Agent: $user_agent$EOL";
my $http_version = 1.0; my $http_version = "1.0";
my $method = "GET"; my $method = "GET";
my $dry_run = 0; my $dry_run = 0;
my $help = 0; my $help = 0;