diff options
author | David Shaw <[email protected]> | 2006-11-06 03:37:08 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-11-06 03:37:08 +0000 |
commit | 1b41117e2aedc41ee8bfcbead9879e302533d15a (patch) | |
tree | 2190c38714ab1ae9ef21da37d1cb453dc1400694 | |
parent | New command --gpgconf-test. (diff) | |
download | gnupg-1b41117e2aedc41ee8bfcbead9879e302533d15a.tar.gz gnupg-1b41117e2aedc41ee8bfcbead9879e302533d15a.zip |
* gpgkeys_hkp.c (curl_mrindex_writer): Revert previous change.
Key-not-found still has a HTML response.
-rw-r--r-- | keyserver/ChangeLog | 5 | ||||
-rw-r--r-- | keyserver/gpgkeys_hkp.c | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/keyserver/ChangeLog b/keyserver/ChangeLog index 86e26492f..445319d0c 100644 --- a/keyserver/ChangeLog +++ b/keyserver/ChangeLog @@ -1,3 +1,8 @@ +2006-11-05 David Shaw <[email protected]> + + * gpgkeys_hkp.c (curl_mrindex_writer): Revert previous change. + Key-not-found still has a HTML response. + 2006-10-19 David Shaw <[email protected]> * gpgkeys_hkp.c (curl_mrindex_writer): Print a warning if we see diff --git a/keyserver/gpgkeys_hkp.c b/keyserver/gpgkeys_hkp.c index 4b6dc8157..19c96bae6 100644 --- a/keyserver/gpgkeys_hkp.c +++ b/keyserver/gpgkeys_hkp.c @@ -1,5 +1,6 @@ /* gpgkeys_hkp.c - talk to an HKP keyserver - * Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2003, 2004, 2005 + * 2006 Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -68,10 +69,7 @@ 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]=='<') - { - fprintf(console,"gpgkeys: unsupported response from keyserver\n"); - swallow=1; - } + swallow=1; checked=1; } |