diff options
author | Michael Adam <obnox@samba.org> | 2009-09-20 13:24:06 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-09-20 13:24:06 +0200 |
commit | 87f7a79e89b34277152b51e2c082ad867ec959b4 (patch) | |
tree | a1e6bf045efb24327373ef2adaff835743f90069 /tests/scripts/webclient.pl | |
parent | 2208bebeacb2245b11f2abd8efec46973acc9eac (diff) | |
download | tinyproxy-87f7a79e89b34277152b51e2c082ad867ec959b4.tar.gz tinyproxy-87f7a79e89b34277152b51e2c082ad867ec959b4.zip |
tests:webclient: fix default version (string, not number...)
Michael
Diffstat (limited to 'tests/scripts/webclient.pl')
-rwxr-xr-x | tests/scripts/webclient.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scripts/webclient.pl b/tests/scripts/webclient.pl index 24756c9..19381b9 100755 --- a/tests/scripts/webclient.pl +++ b/tests/scripts/webclient.pl @@ -30,7 +30,7 @@ my $VERSION = "0.1"; my $NAME = "Tinyproxy-Web-Client"; my $user_agent = "$NAME/$VERSION"; my $user_agent_header = "User-Agent: $user_agent$EOL"; -my $http_version = 1.0; +my $http_version = "1.0"; my $method = "GET"; my $dry_run = 0; my $help = 0; |