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/keylist.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 'g10/keylist.c')
| -rw-r--r-- | g10/keylist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/g10/keylist.c b/g10/keylist.c index c9402a201..9c18996d0 100644 --- a/g10/keylist.c +++ b/g10/keylist.c @@ -1,5 +1,5 @@ /* keylist.c - * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 + * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, * 2004 Free Software Foundation, Inc. * * This file is part of GnuPG. @@ -116,7 +116,7 @@ print_seckey_info (PKT_secret_key *sk) char *p; keyid_from_sk (sk, keyid); - p=get_user_id_printable(keyid); + p=get_user_id_native(keyid); tty_printf ("\nsec %4u%c/%s %s %s\n", nbits_from_sk (sk), @@ -136,7 +136,7 @@ print_pubkey_info (FILE *fp, PKT_public_key *pk) char *p; keyid_from_pk (pk, keyid); - p=get_user_id_printable(keyid); + p=get_user_id_native(keyid); if (fp) fprintf (fp, "pub %4u%c/%s %s %s\n", |
