make no proxy set return OK from Curl_connected_proxy() since it will be called

unconditionally
This commit is contained in:
Daniel Stenberg 2009-05-12 07:38:31 +00:00
parent a1f13dd31b
commit 611b3584d6
1 changed files with 1 additions and 3 deletions

View File

@ -2853,9 +2853,7 @@ CURLcode Curl_connected_proxy(struct connectdata *conn)
/* do nothing here. handled later. */
break;
default:
failf(data, "unknown proxytype option given");
result = CURLE_COULDNT_CONNECT;
break;
break;
} /* switch proxytype */
return result;