1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-08 23:37:47 +02:00

* gpgkeys_hkp.c (curl_mrindex_writer): Print a warning if we see HTML

coming back from a MR hkp query.
This commit is contained in:
David Shaw 2006-10-20 03:56:17 +00:00
parent 4e07a84cb9
commit 9e9214b944
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-10-19 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_hkp.c (curl_mrindex_writer): Print a warning if we see
HTML coming back from a MR hkp query.
2006-09-28 David Shaw <dshaw@jabberwocky.com>
* Makefile.am: Link gpgkeys_ldap to libcompat.a.

View File

@ -68,7 +68,10 @@ curl_mrindex_writer(const void *ptr,size_t size,size_t nmemb,void *stream)
with it on this side of the pipe. */
const char *buf=ptr;
if(buf[0]=='<')
swallow=1;
{
fprintf(console,"gpgkeys: unsupported response from keyserver\n");
swallow=1;
}
checked=1;
}