diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-10-23 22:40:23 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-10-24 08:23:19 +0200 |
commit | 5b73f3576159b0d82b9acc494b96ca946d3ed881 (patch) | |
tree | bca27ce1d61946c0e9cbed1c9ba28d4b9f235014 | |
parent | ede9884c59dd8586e1041372270e3e1b54f33327 (diff) |
Curl_proxyCONNECT: remove superfluous statement
The variable is already assigned, skip the duplicate assignment.
Pointed out by cppcheck.
-rw-r--r-- | lib/http_proxy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/http_proxy.c b/lib/http_proxy.c index 5343eb718..c1c6d65e8 100644 --- a/lib/http_proxy.c +++ b/lib/http_proxy.c @@ -252,7 +252,6 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, nread=0; perline=0; - keepon=TRUE; while((nread<BUFSIZE) && (keepon && !error)) { |