diff options
author | Marcus Brinkmann <[email protected]> | 2009-07-29 16:05:49 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2009-07-29 16:05:49 +0000 |
commit | 7af008bfe1641938a6c2c995cb065829fa05a693 (patch) | |
tree | 8b3b78412230a179decdcb2f1e250308c59d776e | |
parent | Workaround for SCR3320 (diff) | |
download | gnupg-7af008bfe1641938a6c2c995cb065829fa05a693.tar.gz gnupg-7af008bfe1641938a6c2c995cb065829fa05a693.zip |
2009-07-29 Marcus Brinkmann <[email protected]>
* keylist.c (print_capabilities): Print a trailing colon.
Diffstat (limited to '')
-rw-r--r-- | sm/ChangeLog | 4 | ||||
-rw-r--r-- | sm/keylist.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sm/ChangeLog b/sm/ChangeLog index b50703e4b..4cf1f6703 100644 --- a/sm/ChangeLog +++ b/sm/ChangeLog @@ -1,3 +1,7 @@ +2009-07-29 Marcus Brinkmann <[email protected]> + + * keylist.c (print_capabilities): Print a trailing colon. + 2009-07-23 Werner Koch <[email protected]> * certchain.c (is_cert_still_valid): Emit AUDIT_CRL_CHECK. diff --git a/sm/keylist.c b/sm/keylist.c index 2ea722370..9b8538c84 100644 --- a/sm/keylist.c +++ b/sm/keylist.c @@ -286,6 +286,8 @@ print_capabilities (ksba_cert_t cert, estream_t fp) es_putc ('S', fp); if ((use & KSBA_KEYUSAGE_KEY_CERT_SIGN)) es_putc ('C', fp); + + es_putc (':', fp); } |