From 662e523a929c488106f4b319c69a574fa3a4a96c Mon Sep 17 00:00:00 2001 From: David Gwynne Date: Sat, 18 Feb 2012 15:48:43 +1000 Subject: [PATCH] fix non-CONNECT tests missing port/hostname bits set is_connect properly --- test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.c b/test.c index 4cbb361..6dc5d88 100644 --- a/test.c +++ b/test.c @@ -2005,13 +2005,13 @@ const struct url_test url_tests[] = , {.name="proxy empty host" ,.url="http://:443/" - ,.is_connect=1 + ,.is_connect=0 ,.rv=1 } , {.name="proxy empty port" ,.url="http://hostname:/" - ,.is_connect=1 + ,.is_connect=0 ,.rv=1 }