1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-10 13:04:23 +01:00

* sig-check.c (check_key_signature2): Made "no subkey for subkey

binding packet" a verbose item instead of a !quiet one.  There are
too many garbled keys out in the wild.
* getkey.c (premerge_public_with_secret): Made "no secret subkey
for" warning a verbose item and translatable.
This commit is contained in:
Werner Koch 2003-04-29 07:21:08 +00:00
parent d174920691
commit e934896789
3 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2003-04-29 Werner Koch <wk@gnupg.org>
* sig-check.c (check_key_signature2): Made "no subkey for subkey
binding packet" a verbose item instead of a !quiet one. There are
too many garbled keys out in the wild.
* getkey.c (premerge_public_with_secret): Made "no secret subkey
for" warning a verbose item and translatable.
2003-04-28 Werner Koch <wk@gnupg.org> 2003-04-28 Werner Koch <wk@gnupg.org>
* filter.h: Remove const from WHAT. * filter.h: Remove const from WHAT.

View File

@ -2005,8 +2005,9 @@ premerge_public_with_secret ( KBNODE pubblock, KBNODE secblock )
if ( !sec ) { if ( !sec ) {
KBNODE next, ll; KBNODE next, ll;
log_info ( "no secret subkey " if (opt.verbose)
"for public subkey %08lX - ignoring\n", log_info ( _("no secret subkey "
"for public subkey %08lX - ignoring\n"),
(ulong)keyid_from_pk (pk,NULL) ); (ulong)keyid_from_pk (pk,NULL) );
/* we have to remove the subkey in this case */ /* we have to remove the subkey in this case */
assert ( last ); assert ( last );

View File

@ -574,7 +574,7 @@ check_key_signature2( KBNODE root, KBNODE node, PKT_public_key *check_pk,
md_close(md); md_close(md);
} }
else { else {
if (!opt.quiet) if (opt.verbose)
log_info ("key %08lX: no subkey for subkey binding packet\n", log_info ("key %08lX: no subkey for subkey binding packet\n",
(ulong)keyid_from_pk (pk, NULL)); (ulong)keyid_from_pk (pk, NULL));
rc = G10ERR_SIG_CLASS; rc = G10ERR_SIG_CLASS;