diff options
| author | David Shaw <[email protected]> | 2004-10-11 21:08:37 +0000 |
|---|---|---|
| committer | David Shaw <[email protected]> | 2004-10-11 21:08:37 +0000 |
| commit | bf079613b7082a6aa95e067c535a9e74ecad490b (patch) | |
| tree | 910211f2f4112d1a4589f5e1fb972954e7583790 /g10/pkclist.c | |
| parent | * gpgkeys_finger.c, gpgkeys_hkp.c, gpgkeys_http.c, gpgkeys_ldap.c: Fix a (diff) | |
| download | gnupg-bf079613b7082a6aa95e067c535a9e74ecad490b.tar.gz gnupg-bf079613b7082a6aa95e067c535a9e74ecad490b.zip | |
* pkclist.c (do_edit_ownertrust): Use the same translated string for
showing the user ID as mainproc.c:print_pkenc_list.
* mainproc.c (print_pkenc_list): Allow translating the quotes around the
user ID.
* card-util.c, g10.c, photoid.c, trustdb.c: The last of the \"%s\" -> `%s'
quoting for things that aren't user IDs.
* keyserver.c (keyserver_spawn): If there is no keyserver host, print the
whole URI since it is self-contained.
Diffstat (limited to 'g10/pkclist.c')
| -rw-r--r-- | g10/pkclist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c index 8d869cd61..359a3de2e 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -204,7 +204,7 @@ do_edit_ownertrust (PKT_public_key *pk, int mode, pubkey_letter( pk->pubkey_algo ), keystr(keyid), datestr_from_pk( pk ) ); p=get_user_id_native(keyid); - tty_printf(_(" \"%s\"\n"),p); + tty_printf(_(" \"%s\"\n"),p); m_free(p); keyblock = get_pubkeyblock (keyid); @@ -231,7 +231,7 @@ do_edit_ownertrust (PKT_public_key *pk, int mode, p=utf8_to_native(un->pkt->pkt.user_id->name, un->pkt->pkt.user_id->len,0); - tty_printf(_(" aka \"%s\"\n"),p); + tty_printf(_(" aka \"%s\"\n"),p); } print_fingerprint (pk, NULL, 2); |
