mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-12 22:11:29 +02:00
* gpgkeys_ldap.c (send_key): Missing a free().
* curl-shim.c (curl_easy_perform): Some debugging items that may be handy.
This commit is contained in:
parent
f6e12f4b46
commit
1475939994
@ -1,3 +1,10 @@
|
|||||||
|
2007-02-10 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* gpgkeys_ldap.c (send_key): Missing a free().
|
||||||
|
|
||||||
|
* curl-shim.c (curl_easy_perform): Some debugging items that may
|
||||||
|
be handy.
|
||||||
|
|
||||||
2007-01-16 David Shaw <dshaw@jabberwocky.com>
|
2007-01-16 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* curl-shim.h, curl-shim.c, gpgkeys_hkp.c: Rename curl_escape() to
|
* curl-shim.h, curl-shim.c, gpgkeys_hkp.c: Rename curl_escape() to
|
||||||
|
@ -173,7 +173,14 @@ curl_easy_perform(CURL *curl)
|
|||||||
proxy=getenv(HTTP_PROXY_ENV);
|
proxy=getenv(HTTP_PROXY_ENV);
|
||||||
|
|
||||||
if(curl->flags.verbose)
|
if(curl->flags.verbose)
|
||||||
fprintf(curl->errors,"* HTTP proxy is \"%s\"\n",proxy?proxy:"null");
|
{
|
||||||
|
fprintf(curl->errors,"* HTTP proxy is \"%s\"\n",proxy?proxy:"null");
|
||||||
|
fprintf(curl->errors,"* HTTP URL is \"%s\"\n",curl->url);
|
||||||
|
fprintf(curl->errors,"* HTTP auth is \"%s\"\n",
|
||||||
|
curl->auth?curl->auth:"null");
|
||||||
|
fprintf(curl->errors,"* HTTP method is %s\n",
|
||||||
|
curl->flags.post?"POST":"GET");
|
||||||
|
}
|
||||||
|
|
||||||
if(curl->flags.post)
|
if(curl->flags.post)
|
||||||
{
|
{
|
||||||
|
@ -782,6 +782,7 @@ send_key(int *eof)
|
|||||||
free(modlist);
|
free(modlist);
|
||||||
free(addlist);
|
free(addlist);
|
||||||
free(dn);
|
free(dn);
|
||||||
|
free(key);
|
||||||
|
|
||||||
if(ret!=0 && begin)
|
if(ret!=0 && begin)
|
||||||
fprintf(output,"KEY %s FAILED %d\n",keyid,ret);
|
fprintf(output,"KEY %s FAILED %d\n",keyid,ret);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user