talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 61bced3dfe1b5bfcfa512fcc5e0c35fd163d8ac0
parent b88c772b96c2c0cce11fbf1012806bd11d6b1452
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Tue, 23 Aug 2016 17:55:38 +0200

Fix previous commit b88c772, use correct preprocessor directive.

Diffstat:
Msrc/common/ssl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/ssl.c b/src/common/ssl.c @@ -330,7 +330,7 @@ gboolean ssl_init_socket(SockInfo *sockinfo) debug_print("Setting GnuTLS priority to %s, status = %d\n", sockinfo->gnutls_priority, r); } -#ifdef GNUTLS_VERSION_NUMBER < 0x030400 +#if GNUTLS_VERSION_NUMBER < 0x030400 else { gnutls_priority_set_direct(session, "NORMAL:-VERS-SSL3.0", NULL); }