From: Daniel Stenberg Date: Thu, 29 Jul 2004 07:29:56 +0000 (+0000) Subject: oops, curl_easy_reset is a void X-Git-Tag: curl-7_12_1~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d23affbc5bf0e38b7e11469f6f0378d0410d730;p=curl oops, curl_easy_reset is a void --- diff --git a/include/curl/easy.h b/include/curl/easy.h index 0ddf08dcb..336e542f8 100644 --- a/include/curl/easy.h +++ b/include/curl/easy.h @@ -72,7 +72,7 @@ CURL* curl_easy_duphandle(CURL *curl); * It does keep: live connections, the Session ID cache, the DNS cache and the * cookies. */ -CURL* curl_easy_reset(CURL *curl); +void curl_easy_reset(CURL *curl); #ifdef __cplusplus }