summaryrefslogtreecommitdiffstats
path: root/notmuch-client.h
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2017-12-08 01:23:51 -0500
committerDavid Bremner <david@tethera.net>2017-12-08 08:06:03 -0400
commitb62045a18680720b407173140d79b459e45e6039 (patch)
treef17e98231e9dd5b704603b1f8cd87aba260dfcb2 /notmuch-client.h
parentd3964e81ac98825a025a6120c488ebd73de2a281 (diff)
indexopts: change _try_decrypt to _decrypt_policy
This terminology makes it clearer what's going on at the API layer, and paves the way for future changesets that offer more nuanced decryption policy.
Diffstat (limited to 'notmuch-client.h')
-rw-r--r--notmuch-client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/notmuch-client.h b/notmuch-client.h
index f7524e59..fc981459 100644
--- a/notmuch-client.h
+++ b/notmuch-client.h
@@ -500,8 +500,8 @@ int notmuch_minimal_options (const char* subcommand_name,
/* the state chosen by the user invoking one of the notmuch
* subcommands that does indexing */
struct _notmuch_client_indexing_cli_choices {
- bool try_decrypt;
- bool try_decrypt_set;
+ bool decrypt_policy;
+ bool decrypt_policy_set;
notmuch_indexopts_t * opts;
};
extern struct _notmuch_client_indexing_cli_choices indexing_cli_choices;