1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* gpgkeys_finger.c (get_key), gpgkeys_curl.c (get_key): Better language

for the key-not-found error.
This commit is contained in:
David Shaw 2005-12-07 23:00:30 +00:00
parent 05193a2705
commit a4fae95d04
3 changed files with 11 additions and 11 deletions

View file

@ -339,9 +339,9 @@ get_key (char *getkey)
fprintf (output,"KEY 0x%s END\n", getkey);
else
{
fprintf (console,"gpgkeys: key %s not found on keyserver\n",getkey);
fprintf (output,"KEY 0x%s FAILED %d\n",
getkey,KEYSERVER_KEY_NOT_FOUND);
fprintf(console,"gpgkeys: no key data found for finger:%s\n",
opt->opaque);
fprintf(output,"KEY 0x%s FAILED %d\n",getkey,KEYSERVER_KEY_NOT_FOUND);
}
xfree(line);