aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;