From 521b68eb637982870cfb8bdecb57bb07b90930f3 Mon Sep 17 00:00:00 2001 From: Michael Elkins Date: Sun, 31 Dec 2000 22:17:54 +0000 Subject: [PATCH] fixed compilation error with no libssl support ("lorenzo martignoni" ) --- imap.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/imap.c b/imap.c index bb5bc55..d63e41d 100644 --- 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)