From a75d9d91691af5ce54dc3fa8b6b249c71ed9cb35 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 17 Dec 2009 16:07:02 +0000 Subject: [PATCH] uh, assign the bool it points to properly --- lib/url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/url.c b/lib/url.c index c16c203..ec2c2bf 100644 --- a/lib/url.c +++ b/lib/url.c @@ -3312,7 +3312,7 @@ static CURLcode parseurlandfillconn(struct SessionHandle *data, char protobuf[16]; const char *protop; - prot_missing = FALSE; + *prot_missing = FALSE; /************************************************************* * Parse the URL. -- 2.7.4