summaryrefslogtreecommitdiffstats
path: root/notmuch-reply.c
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2017-10-10 01:49:02 -0400
committerDavid Bremner <david@tethera.net>2017-10-12 22:11:25 -0300
commit88f2a72ef1dcfce149bbac776652ea04e564726d (patch)
tree2e763a78af3f93d8cacb8a174791c37472e0a05a /notmuch-reply.c
parent008a5e92eb157e2bb8622cb2fbf644deba5ba4b4 (diff)
crypto: rename notmuch_crypto_t to _notmuch_crypto_t
The notmuch_crypto_t struct isn't used externally, and we have no plans to explicitly export it. Prefix its name (and associated functions) with _ to make that intent clear.
Diffstat (limited to 'notmuch-reply.c')
-rw-r--r--notmuch-reply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-reply.c b/notmuch-reply.c
index 3e5a1443..2c7cc4eb 100644
--- a/notmuch-reply.c
+++ b/notmuch-reply.c
@@ -759,7 +759,7 @@ notmuch_reply_command (notmuch_config_t *config, int argc, char *argv[])
if (do_reply (config, query, &params, format, reply_all) != 0)
return EXIT_FAILURE;
- notmuch_crypto_cleanup (&params.crypto);
+ _notmuch_crypto_cleanup (&params.crypto);
notmuch_query_destroy (query);
notmuch_database_destroy (notmuch);