diff options
author | Werner Koch <[email protected]> | 2017-03-21 10:16:16 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-03-21 10:16:16 +0000 |
commit | 55ac5eed9f59081283d34098a9e0ada753d61d59 (patch) | |
tree | 6f858ed622b61700934835d92ba08c0a00123899 /tests/t-engine-info.c | |
parent | core: New encryption flag GPGME_ENCRYPT_THROW_KEYIDS. (diff) | |
download | gpgme-55ac5eed9f59081283d34098a9e0ada753d61d59.tar.gz gpgme-55ac5eed9f59081283d34098a9e0ada753d61d59.zip |
core: Extend gpgme_get_dirinfo to return the gpg-wks-client name.
* src/dirinfo.c (WANT_GPG_WKS_CLIENT_NAME): New const.
(struct dirinfo): New field 'gpg_wks_client_name'.
(get_gpgconf_item): Build it on demand.
(gpgme_get_dirinfo): New value "gpg-wks-client-name" for WHAT.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'tests/t-engine-info.c')
-rw-r--r-- | tests/t-engine-info.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/t-engine-info.c b/tests/t-engine-info.c index 8f617f9a..43257eb0 100644 --- a/tests/t-engine-info.c +++ b/tests/t-engine-info.c @@ -125,7 +125,9 @@ main (int argc, char **argv ) "gpgconf-name", "gpg-name", "gpgsm-name", - "g13-name", NULL }; + "g13-name", + "gpg-wks-client-name", + NULL }; const char *s; int i; |