diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2010-04-06 22:57:20 -0700 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2010-04-15 10:51:03 -0700 |
commit | 44f1bef6683ddc3fb268b0bca2e5eae314d69d23 (patch) | |
tree | dec961c554fa567ec5789cbce0036a22253085a8 /lib | |
parent | f38510f4b59edad8ae6e8f1535ea3ffcd31fa5d4 (diff) |
Remove redundant conditional
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4707,7 +4707,7 @@ static CURLcode create_conn(struct SessionHandle *data, proxy = NULL; } /* proxy must be freed later unless NULL */ - if(proxy && *proxy) { + if(proxy) { long bits = conn->protocol & (PROT_HTTPS|PROT_SSL); if((conn->proxytype == CURLPROXY_HTTP) || |