diff options
author | David Shaw <[email protected]> | 2004-08-23 17:55:49 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-08-23 17:55:49 +0000 |
commit | 9d4327ba4dc26fb33531ffecf07f673ba65d0637 (patch) | |
tree | 93cb24c58557a8461ccd2c1fae8b0943f99c04c1 /g10/sign.c | |
parent | * gpgkeys_hkp.c (dehtmlize): Understand the quote character (i.e. (diff) | |
download | gnupg-9d4327ba4dc26fb33531ffecf07f673ba65d0637.tar.gz gnupg-9d4327ba4dc26fb33531ffecf07f673ba65d0637.zip |
* keydb.h, getkey.c (get_user_id_printable): Rename to get_user_id_native
and remove the printable stuff since we're print-ifying valid utf8
characters. Change all callers in import.c, sign.c, keylist.c, and
encode.c.
Diffstat (limited to '')
-rw-r--r-- | g10/sign.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/sign.c b/g10/sign.c index 3ba6d6e0b..1550350bc 100644 --- a/g10/sign.c +++ b/g10/sign.c @@ -369,7 +369,7 @@ do_sign( PKT_secret_key *sk, PKT_signature *sig, log_error(_("signing failed: %s\n"), g10_errstr(rc) ); else { if( opt.verbose ) { - char *ustr = get_user_id_string_printable (sig->keyid); + char *ustr = get_user_id_string_native (sig->keyid); log_info(_("%s/%s signature from: \"%s\"\n"), pubkey_algo_to_string(sk->pubkey_algo), digest_algo_to_string(sig->digest_algo), |