aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2008-12-21 16:57:33 +0000
committerDavid Shaw <[email protected]>2008-12-21 16:57:33 +0000
commit3aa63ab224dfecf96f1570f62697c9a1a41698ba (patch)
tree9505abacb9b99e077c73de2e5f486748080461eb
parentChange the SIG_ID computation to match 2.0.10. (diff)
downloadgnupg-3aa63ab224dfecf96f1570f62697c9a1a41698ba.tar.gz
gnupg-3aa63ab224dfecf96f1570f62697c9a1a41698ba.zip
* gpg.c (main): Properly handle UTF8 usernames with --sign-key and --lsign-key.
-rw-r--r--g10/ChangeLog5
-rw-r--r--g10/gpg.c2
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.
diff --git a/g10/gpg.c b/g10/gpg.c
index ded952e07..730899ccc 100644
--- a/g10/gpg.c
+++ b/g10/gpg.c
@@ -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;