aboutsummaryrefslogtreecommitdiff
path: root/lib/http_proxy.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-10-23 22:40:23 +0200
committerDaniel Stenberg <daniel@haxx.se>2014-10-24 08:23:19 +0200
commit5b73f3576159b0d82b9acc494b96ca946d3ed881 (patch)
treebca27ce1d61946c0e9cbed1c9ba28d4b9f235014 /lib/http_proxy.c
parentede9884c59dd8586e1041372270e3e1b54f33327 (diff)
Curl_proxyCONNECT: remove superfluous statement
The variable is already assigned, skip the duplicate assignment. Pointed out by cppcheck.
Diffstat (limited to 'lib/http_proxy.c')
-rw-r--r--lib/http_proxy.c1
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)) {