Can't get key from keyserver: eof

David DeSimone fox@rsn.hp.com
Fri, 3 Dec 1999 13:41:45 -0600


David DeSimone <fox@rsn.hp.com> wrote:

>
> gpg: Signature made Sat, Oct 30, 1999 04:25:24 PM CDT using RSA key ID 766CD151
> gpg: requesting key 766CD151 from wwwkeys.us.pgp.net ...
> gpg: can't get key from keyserver: eof
> gpg: Can't check signature: public key not found
I have an update on this problem. If I comment out the following statement, it works! util/http.c: int http_wait_response( HTTP_HD hd, unsigned int *ret_status ) { int rc; http_start_data( hd ); /* make sure that we are in the data */ iobuf_flush( hd->fp_write ); hd->sock = dup( hd->sock ); if( hd->sock == -1 ) return G10ERR_GENERAL; iobuf_close( hd->fp_write ); hd->fp_write = NULL; /* shutdown( hd->sock, 1 ); */ <<<<< COMMENT THIS OUT <<<<< hd->in_data = 0; hd->fp_read = iobuf_fdopen( hd->sock , "r" ); if( !hd->fp_read ) return G10ERR_GENERAL; rc = parse_response( hd ); if( !rc && ret_status ) *ret_status = hd->status_code; return rc; } Does anyone have some idea WHY this would be the case? (Please CC me, since I'm not (yet) subscribed to this list...) -- David DeSimone | "The doctrine of human equality reposes on this: fox@rsn.hp.com | that there is no man really clever who has not Hewlett-Packard | found that he is stupid." -- Gilbert K. Chesterson UX WTEC Engineer | PGP: 5B 47 34 9F 3B 9A B0 0D AB A6 15 F1 BB BE 8C 44