1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* import.c (import_keys_stream): Fix compiler type warning.

* keyring.c (keyring_rebuild_cache), sig-check.c (check_key_signature2),
import.c (import, chk_self_sigs): Minor language cleanups.
This commit is contained in:
David Shaw 2002-09-24 21:20:48 +00:00
parent c5faf2270a
commit 7ad7f453c0
4 changed files with 19 additions and 11 deletions

View file

@ -547,7 +547,7 @@ check_key_signature2( KBNODE root, KBNODE node, int *is_selfsig,
else {
if (!opt.quiet)
log_info (_("key %08lX: no subkey for subkey "
"revocation packet\n"),
"revocation signature\n"),
(ulong)keyid_from_pk (pk, NULL));
rc = G10ERR_SIG_CLASS;
}
@ -572,8 +572,8 @@ check_key_signature2( KBNODE root, KBNODE node, int *is_selfsig,
}
else {
if (!opt.quiet)
log_info ("key %08lX: no subkey for subkey binding packet\n",
(ulong)keyid_from_pk (pk, NULL));
log_info ("key %08lX: no subkey for subkey "
"binding signature\n",(ulong)keyid_from_pk(pk,NULL));
rc = G10ERR_SIG_CLASS;
}
}