From 335dfa793c239283b0003d3f10739051c10ecb13 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 5 May 2011 15:38:01 +0200 Subject: [PATCH] http_perhapsrewind: remove HTTP check No need to check for HTTP as this is now a HTTP-specific function --- lib/http.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/http.c b/lib/http.c index b05412c..f6b6a3e 100644 --- a/lib/http.c +++ b/lib/http.c @@ -345,10 +345,9 @@ static CURLcode http_perhapsrewind(struct connectdata *conn) curl_off_t bytessent; curl_off_t expectsend = -1; /* default is unknown */ - if(!http || !(conn->handler->protocol & CURLPROTO_HTTP)) - /* If this is still NULL, we have not reach very far and we can - safely skip this rewinding stuff, or this is attempted to get used - when HTTP isn't activated */ + if(!http) + /* If this is still NULL, we have not reach very far and we can safely + skip this rewinding stuff */ return CURLE_OK; switch(data->set.httpreq) { -- 2.7.4