diff options
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); | 
