diff options
| author | Marcus Brinkmann <[email protected]> | 2002-11-19 10:36:07 +0100 |
|---|---|---|
| committer | Marcus Brinkmann <[email protected]> | 2002-11-19 10:36:07 +0100 |
| commit | 3bcbecea8531dfe49011f7232a32503016e02f83 (patch) | |
| tree | 4d5e52e9e5084a4cafe92f00500e6ce79171ded2 /branches | |
| parent | 2002-11-19 Marcus Brinkmann <[email protected]> (diff) | |
| download | gpgme-3bcbecea8531dfe49011f7232a32503016e02f83.tar.gz gpgme-3bcbecea8531dfe49011f7232a32503016e02f83.zip | |
2002-11-19 Marcus Brinkmann <[email protected]>
* rungpg.c (gpg_keylist): Add --with-fingerprint to gpg invocation
twice, to get fingerprints on subkeys. Suggested by Timo Schulz
<[email protected]>.
(gpg_keylist_ext): Likewise.
Diffstat (limited to 'branches')
| -rw-r--r-- | branches/gpgme-0-3-branch/gpgme/ChangeLog | 7 | ||||
| -rw-r--r-- | branches/gpgme-0-3-branch/gpgme/rungpg.c | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/branches/gpgme-0-3-branch/gpgme/ChangeLog b/branches/gpgme-0-3-branch/gpgme/ChangeLog index b754dc23..f37c566b 100644 --- a/branches/gpgme-0-3-branch/gpgme/ChangeLog +++ b/branches/gpgme-0-3-branch/gpgme/ChangeLog @@ -1,3 +1,10 @@ +2002-11-19 Marcus Brinkmann <[email protected]> + + * rungpg.c (gpg_keylist): Add --with-fingerprint to gpg invocation + twice, to get fingerprints on subkeys. Suggested by Timo Schulz + <[email protected]>. + (gpg_keylist_ext): Likewise. + 2002-11-05 Marcus Brinkmann <[email protected]> * import.c (append_xml_impinfo): Use diff --git a/branches/gpgme-0-3-branch/gpgme/rungpg.c b/branches/gpgme-0-3-branch/gpgme/rungpg.c index f67f68fd..6cffe35e 100644 --- a/branches/gpgme-0-3-branch/gpgme/rungpg.c +++ b/branches/gpgme-0-3-branch/gpgme/rungpg.c @@ -1669,6 +1669,8 @@ _gpgme_gpg_op_keylist (GpgObject gpg, const char *pattern, int secret_only, if (!err) err = _gpgme_gpg_add_arg (gpg, "--with-fingerprint"); if (!err) + err = _gpgme_gpg_add_arg (gpg, "--with-fingerprint"); + if (!err) err = _gpgme_gpg_add_arg (gpg, (keylist_mode & GPGME_KEYLIST_MODE_SIGS)? "--check-sigs" : @@ -1700,6 +1702,8 @@ _gpgme_gpg_op_keylist_ext (GpgObject gpg, const char *pattern[], if (!err) err = _gpgme_gpg_add_arg (gpg, "--with-fingerprint"); if (!err) + err = _gpgme_gpg_add_arg (gpg, "--with-fingerprint"); + if (!err) err = _gpgme_gpg_add_arg (gpg, secret_only ? "--list-secret-keys" : "--list-keys"); |
