isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 521b68eb637982870cfb8bdecb57bb07b90930f3
parent d03ce3f73dda4b65ebd967344a43b1851a66def2
Author: Michael Elkins <me@mutt.org>
Date:   Sun, 31 Dec 2000 22:17:54 +0000

fixed compilation error with no libssl support ("lorenzo martignoni"
<lorenzo.martignoni@technologist.com>)

Diffstat:
Mimap.c | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/imap.c b/imap.c @@ -43,12 +43,6 @@ const char *Flags[] = { "\\Draft" }; -#if HAVE_LIBSSL - -#define MAX_DEPTH 1 - -SSL_CTX *SSLContext = 0; - void free_message (message_t * msg) { @@ -64,6 +58,12 @@ free_message (message_t * msg) } } +#if HAVE_LIBSSL + +#define MAX_DEPTH 1 + +SSL_CTX *SSLContext = 0; + /* this gets called when a certificate is to be verified */ static int verify_cert (SSL * ssl)