diff options
author | Michal Marek <mmarek@suse.cz> | 2008-03-18 08:14:37 +0000 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2008-03-18 08:14:37 +0000 |
commit | 6f3166c15b7fc951b10ba7cb2607527065264f0e (patch) | |
tree | 760f1801948bc99fbf7efa645ad101926d81b804 /lib/easy.c | |
parent | 1380c9af9fdcd915625dad2fbe3f5676c9bc105f (diff) | |
download | curl-6f3166c15b7fc951b10ba7cb2607527065264f0e.tar.gz |
- Added curl_easy_getinfo typechecker.
- Added macros for curl_share_setopt and curl_multi_setopt to check at least
the correct number of arguments.
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/easy.c b/lib/easy.c index 018aeab6e..cfa6c41b1 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -548,6 +548,7 @@ void Curl_easy_initHandleData(struct SessionHandle *data) * curl_easy_getinfo() is an external interface that allows an app to retrieve * information from a performed transfer and similar. */ +#undef curl_easy_getinfo CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...) { va_list arg; |