1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-23 01:22:45 +02:00

* gpgkeys_curl.c (get_key): Newer versions of libcurl don't define TRUE.

This commit is contained in:
David Shaw 2005-01-10 03:46:12 +00:00
parent f464dcef59
commit 1f91ed775c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-01-09 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_curl.c (get_key): Newer versions of libcurl don't define
TRUE.
2004-12-24 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_curl.c (main): Use new defines for opting out of certain

View File

@ -94,7 +94,7 @@ get_key(char *getkey)
if(verbose>1)
{
curl_easy_setopt(curl,CURLOPT_STDERR,console);
curl_easy_setopt(curl,CURLOPT_VERBOSE,TRUE);
curl_easy_setopt(curl,CURLOPT_VERBOSE,1);
}
res=curl_easy_perform(curl);