mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
From STABLE-BRANCH-1-4
* 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
dd38a04f16
commit
c1239f5a44
@ -1,3 +1,12 @@
|
||||
2007-03-09 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
From STABLE-BRANCH-1-4
|
||||
|
||||
* gpgkeys_ldap.c (send_key): Missing a free().
|
||||
|
||||
* curl-shim.c (curl_easy_perform): Some debugging items that may
|
||||
be handy.
|
||||
|
||||
2006-12-03 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* gpgkeys_hkp.c (search_key): HKP keyservers like the 0x to be
|
||||
|
@ -178,7 +178,14 @@ curl_easy_perform(CURL *curl)
|
||||
proxy=getenv(HTTP_PROXY_ENV);
|
||||
|
||||
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)
|
||||
{
|
||||
|
@ -782,6 +782,7 @@ send_key(int *eof)
|
||||
free(modlist);
|
||||
free(addlist);
|
||||
free(dn);
|
||||
free(key);
|
||||
|
||||
if(ret!=0 && begin)
|
||||
fprintf(output,"KEY %s FAILED %d\n",keyid,ret);
|
||||
|
Loading…
x
Reference in New Issue
Block a user