diff options
author | David Shaw <[email protected]> | 2008-12-21 16:57:33 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2008-12-21 16:57:33 +0000 |
commit | 3aa63ab224dfecf96f1570f62697c9a1a41698ba (patch) | |
tree | 9505abacb9b99e077c73de2e5f486748080461eb | |
parent | Change the SIG_ID computation to match 2.0.10. (diff) | |
download | gnupg-3aa63ab224dfecf96f1570f62697c9a1a41698ba.tar.gz gnupg-3aa63ab224dfecf96f1570f62697c9a1a41698ba.zip |
* gpg.c (main): Properly handle UTF8 usernames with --sign-key and --lsign-key.
-rw-r--r-- | g10/ChangeLog | 5 | ||||
-rw-r--r-- | g10/gpg.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index 0ac894f1c..55fe2f932 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2008-12-21 David Shaw <[email protected]> + + * gpg.c (main): Properly handle UTF8 usernames with --sign-key and + --lsign-key. + 2008-12-11 Werner Koch <[email protected]> * sig-check.c (check_revocation_keys): Close message digest. @@ -3539,7 +3539,7 @@ main (int argc, char **argv ) append_to_strlist( &sl, "save" ); username = make_username( fname ); - keyedit_menu(fname, locusr, sl, 0, 0 ); + keyedit_menu(username, locusr, sl, 0, 0 ); xfree(username); free_strlist(sl); break; |