diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-12-17 16:07:02 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-12-17 16:07:02 +0000 |
commit | a75d9d91691af5ce54dc3fa8b6b249c71ed9cb35 (patch) | |
tree | 4542d4c9cbdb027b3af3e2afa302ee0f113b0b78 | |
parent | 54c60d0067b189a7248f5b6e50f235128c1ba89a (diff) |
uh, assign the bool it points to properly
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |