Unverified Commit deff7de0 authored by Marcel Raad's avatar Marcel Raad
Browse files

http_proxy: fix compiler warning

With CURL_DISABLE_PROXY or CURL_DISABLE_HTTP, GCC complained about a
missing prototype for Curl_connect_free.
parent c095d7b5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -22,11 +22,12 @@

#include "curl_setup.h"

#include "http_proxy.h"

#if !defined(CURL_DISABLE_PROXY) && !defined(CURL_DISABLE_HTTP)

#include "urldata.h"
#include <curl/curl.h>
#include "http_proxy.h"
#include "sendf.h"
#include "http.h"
#include "url.h"