Apparently PGP Desktop doesn't like our "Storing %d keys." success
message when storing keys received via HKP. Change our output to match
what the pgp.com and SKS keyservers return. Patch from Timothy Legge.
count = parse_keys(packets, &keys);
logthing(LOGTHING_NOTICE, "Received %d keys.",
count);
- printf("Storing %d keys.\n", count);
+ printf("Key block added to key server database.\n");
+ printf(" New public keys added: %d\n", count);
end_html();
if (stdout != NULL && fileno(stdout) != -1) {
fclose(stdout);