From a1b3a95c96adb9624358c26976c5d22adeaab6ed Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 23 May 2017 07:41:52 +0200 Subject: url: fix declaration of 'pipe' shadows a global declaration follow-up to 4cdb1be8246c --- lib/url.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/lib/url.c b/lib/url.c index 8e470b0e1..d8b6e46fe 100644 --- a/lib/url.c +++ b/lib/url.c @@ -3431,7 +3431,7 @@ ConnectionExists(struct Curl_easy *data, struct connectdata *check; struct connectdata *chosen = 0; bool foundPendingCandidate = FALSE; - int pipe = IsPipeliningPossible(data, needle); + int canpipe = IsPipeliningPossible(data, needle); struct connectbundle *bundle; #ifdef USE_NTLM @@ -3448,8 +3448,9 @@ ConnectionExists(struct Curl_easy *data, *waitpipe = FALSE; /* We can't pipeline if the site is blacklisted */ - if((pipe & CURLPIPE_HTTP1) && Curl_pipeline_site_blacklisted(data, needle)) - pipe &= ~ CURLPIPE_HTTP1; + if((canpipe & CURLPIPE_HTTP1) && + Curl_pipeline_site_blacklisted(data, needle)) + canpipe &= ~ CURLPIPE_HTTP1; /* Look up the bundle with all the connections to this particular host */ @@ -3470,7 +3471,7 @@ ConnectionExists(struct Curl_easy *data, "can multiplex" : "serially"))); /* We can't pipeline if we don't know anything about the server */ - if(pipe) { + if(canpipe) { if(bundle->multiuse <= BUNDLE_UNKNOWN) { if((bundle->multiuse == BUNDLE_UNKNOWN) && data->set.pipewait) { infof(data, "Server doesn't support multi-use yet, wait\n"); @@ -3479,18 +3480,18 @@ ConnectionExists(struct Curl_easy *data, } infof(data, "Server doesn't support multi-use (yet)\n"); - pipe = 0; + canpipe = 0; } if((bundle->multiuse == BUNDLE_PIPELINING) && !Curl_pipeline_wanted(data->multi, CURLPIPE_HTTP1)) { /* not asked for, switch off */ infof(data, "Could pipeline, but not asked to!\n"); - pipe = 0; + canpipe = 0; } else if((bundle->multiuse == BUNDLE_MULTIPLEX) && !Curl_pipeline_wanted(data->multi, CURLPIPE_MULTIPLEX)) { infof(data, "Could multiplex, but not asked to!\n"); - pipe = 0; + canpipe = 0; } } @@ -3511,7 +3512,7 @@ ConnectionExists(struct Curl_easy *data, pipeLen = check->send_pipe.size + check->recv_pipe.size; - if(pipe) { + if(canpipe) { if(check->bits.protoconnstart && check->bits.close) continue; @@ -3633,7 +3634,7 @@ ConnectionExists(struct Curl_easy *data, } } - if(!pipe && check->inuse) + if(!canpipe && check->inuse) /* this request can't be pipelined but the checked connection is already in use so we skip it */ continue; @@ -3764,7 +3765,7 @@ ConnectionExists(struct Curl_easy *data, continue; } #endif - if(pipe) { + if(canpipe) { /* We can pipeline if we want to. Let's continue looking for the optimal connection to use, i.e the shortest pipe that is not blacklisted. */ -- cgit v1.2.3