diff options
author | Marcus Brinkmann <[email protected]> | 2005-05-17 12:26:58 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2005-05-17 12:26:58 +0000 |
commit | d386d747e29fd84dfb605185c282eaee2e306c25 (patch) | |
tree | 14f9dc6ee02dd9331de1c5cb399ae4f9e8bc715d | |
parent | 2005-05-11 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-d386d747e29fd84dfb605185c282eaee2e306c25.tar.gz gpgme-d386d747e29fd84dfb605185c282eaee2e306c25.zip |
2005-05-17 Marcus Brinkmann <[email protected]>
* gpgme.c (gpgme_new): Set the CTX->include_certs default to the
default.
Diffstat (limited to '')
-rw-r--r-- | gpgme/ChangeLog | 5 | ||||
-rw-r--r-- | gpgme/gpgme.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index dadf512d..86e17713 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,8 @@ +2005-05-17 Marcus Brinkmann <[email protected]> + + * gpgme.c (gpgme_new): Set the CTX->include_certs default to the + default. + 2005-05-11 Marcus Brinkmann <[email protected]> * w32-io.c (_gpgme_io_select): Fix loop increment. diff --git a/gpgme/gpgme.c b/gpgme/gpgme.c index 5eb40bea..85eaf3a0 100644 --- a/gpgme/gpgme.c +++ b/gpgme/gpgme.c @@ -60,7 +60,7 @@ gpgme_new (gpgme_ctx_t *r_ctx) } ctx->keylist_mode = GPGME_KEYLIST_MODE_LOCAL; - ctx->include_certs = 1; + ctx->include_certs = GPGME_INCLUDE_CERTS_DEFAULT; ctx->protocol = GPGME_PROTOCOL_OpenPGP; _gpgme_fd_table_init (&ctx->fdt); |