aboutsummaryrefslogtreecommitdiffstats
path: root/src/gpgme.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpgme.c')
-rw-r--r--src/gpgme.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gpgme.c b/src/gpgme.c
index f6d7f38d..086e680b 100644
--- a/src/gpgme.c
+++ b/src/gpgme.c
@@ -619,6 +619,10 @@ gpgme_set_ctx_flag (gpgme_ctx_t ctx, const char *name, const char *value)
{
ctx->no_auto_check_trustdb = abool;
}
+ else if (!strcmp (name, "proc-all-sigs"))
+ {
+ ctx->proc_all_sigs = abool;
+ }
else
err = gpg_error (GPG_ERR_UNKNOWN_NAME);
@@ -708,6 +712,10 @@ gpgme_get_ctx_flag (gpgme_ctx_t ctx, const char *name)
{
return ctx->no_auto_check_trustdb? "1":"";
}
+ else if (!strcmp (name, "proc-all-sigs"))
+ {
+ return ctx->proc_all_sigs? "1":"";
+ }
else
return NULL;
}