diff options
| author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2019-05-02 09:19:37 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-05-03 06:55:32 -0300 |
| commit | bb0b119358e4d6df5cc085a48cb3d2e09e396922 (patch) | |
| tree | 2eacba32eb5e35bdc3a8e3b7fcd75bf662c70c0f /notmuch-show.c | |
| parent | 096d45a878ba9606f1677f66d346b14c3c274fa5 (diff) | |
gmime-cleanup: always support session keys
Our minimum version of GMime 3.0 always supports good session key
handling.
signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Diffstat (limited to 'notmuch-show.c')
| -rw-r--r-- | notmuch-show.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/notmuch-show.c b/notmuch-show.c index 436c1741..730a91f8 100644 --- a/notmuch-show.c +++ b/notmuch-show.c @@ -894,7 +894,6 @@ show_message (void *ctx, part = mime_node_seek_dfs (root, (params->part < 0 ? 0 : params->part)); if (part) status = format->part (local, sp, part, indent, params); -#if HAVE_GMIME_SESSION_KEYS if (params->crypto.decrypt == NOTMUCH_DECRYPT_TRUE && session_key_count_error == NOTMUCH_STATUS_SUCCESS) { unsigned int new_session_keys = 0; if (notmuch_message_count_properties (message, "session-key", &new_session_keys) == NOTMUCH_STATUS_SUCCESS && @@ -908,7 +907,6 @@ show_message (void *ctx, } } } -#endif DONE: talloc_free (local); return status; |
