diff options
Diffstat (limited to 'g10')
-rw-r--r-- | g10/ChangeLog | 23 | ||||
-rw-r--r-- | g10/mainproc.c | 4 |
2 files changed, 16 insertions, 11 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index c08c19547..cb3245b06 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -6,26 +6,31 @@ (tty_print_notations): Helper. (show_prefs): Show notations in "showpref". - * mainproc.c (get_pka_address), keylist.c (show_notation): Remove + * mainproc.c (get_pka_address) + * keylist.c (show_notation): Remove duplicate code by using notation functions. - * packet.h, build-packet.c (sig_to_notation), keygen.c - (keygen_add_notations): Provide printable text for + * packet.h, build-packet.c (sig_to_notation) + * keygen.c (keygen_add_notations): Provide printable text for non-human-readable notation values. - * packet.h, build-packet.c (sig_to_notation), keygen.c - (keygen_add_notations): Tweak to handle non-human-readable + * packet.h, build-packet.c (sig_to_notation) + * keygen.c (keygen_add_notations): Tweak to handle non-human-readable notation values. - * options.h, sign.c (mk_notation_policy_etc), gpg.c - (add_notation_data): Use it here for the various notation + * options.h, sign.c (mk_notation_policy_etc) + * gpg.c (add_notation_data): Use it here for the various notation commands. - * packet.h, main.h, keygen.c (keygen_add_notations), - build-packet.c (string_to_notation, sig_to_notation) + * packet.h, main.h, keygen.c (keygen_add_notations) + * build-packet.c (string_to_notation, sig_to_notation) (free_notation): New "one stop shopping" functions to handle notations and start removing some code duplication. +2006-03-08 Werner Koch <[email protected]> + + * mainproc.c (do_check_sig): Use log_error for standalone revocations. + 2006-03-07 David Shaw <[email protected]> * options.h, mainproc.c (check_sig_and_print), gpg.c (main): diff --git a/g10/mainproc.c b/g10/mainproc.c index 336ad948d..dbe64c96e 100644 --- a/g10/mainproc.c +++ b/g10/mainproc.c @@ -814,8 +814,8 @@ do_check_sig( CTX c, KBNODE node, int *is_selfsig, return check_key_signature( c->list, node, is_selfsig ); } else if( sig->sig_class == 0x20 ) { - log_info(_("standalone revocation - " - "use \"gpg --import\" to apply\n")); + log_error (_("standalone revocation - " + "use \"gpg --import\" to apply\n")); return G10ERR_NOT_PROCESSED; } else { |