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 /lib/built-with.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 'lib/built-with.c')
| -rw-r--r-- | lib/built-with.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/built-with.c b/lib/built-with.c index 9cffd9f9..320be6c5 100644 --- a/lib/built-with.c +++ b/lib/built-with.c @@ -31,7 +31,7 @@ notmuch_built_with (const char *name) } else if (STRNCMP_LITERAL (name, "retry_lock") == 0) { return HAVE_XAPIAN_DB_RETRY_LOCK; } else if (STRNCMP_LITERAL (name, "session_key") == 0) { - return HAVE_GMIME_SESSION_KEYS; + return true; } else { return false; } |
