diff options
author | Werner Koch <[email protected]> | 2008-03-13 08:46:08 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-03-13 08:46:08 +0000 |
commit | 6a78bca874eefb859caf10410e8a0d3e11a49e06 (patch) | |
tree | 2ce6a8f26cc4dc62ee8787d554a386f43942177e /sm/keylist.c | |
parent | Comment fixes. (diff) | |
download | gnupg-6a78bca874eefb859caf10410e8a0d3e11a49e06.tar.gz gnupg-6a78bca874eefb859caf10410e8a0d3e11a49e06.zip |
Fixed an email/DN bug.
Changed pinentry prompts.
Diffstat (limited to 'sm/keylist.c')
-rw-r--r-- | sm/keylist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sm/keylist.c b/sm/keylist.c index 4716a2bc2..5f3a88136 100644 --- a/sm/keylist.c +++ b/sm/keylist.c @@ -286,7 +286,7 @@ print_time (gnupg_isotime_t t, estream_t fp) /* Return an allocated string with the email address extracted from a - DN */ + DN. Note hat we use this code also in ../kbx/keybox-blob.c. */ static char * email_kludge (const char *name) { @@ -311,7 +311,7 @@ email_kludge (const char *name) /* This looks pretty much like an email address in the subject's DN we use this to add an additional user ID entry. This way, - openSSL generated keys get a nicer and usable listing */ + OpenSSL generated keys get a nicer and usable listing. */ for (n=0, p=name; hexdigitp (p) && hexdigitp (p+1); p +=2, n++) ; if (!n) |