Merge branch 'jk/no-openssl-with-openssl-sha1'
The "imap-send" now allows to be compiled with NO_OPENSSL and OPENSSL_SHA1 defined together. * jk/no-openssl-with-openssl-sha1: imap-send: handle NO_OPENSSL even when openssl exists
This commit is contained in:
@ -31,9 +31,6 @@
|
||||
#include "parse-options.h"
|
||||
#include "setup.h"
|
||||
#include "strbuf.h"
|
||||
#if defined(NO_OPENSSL) && !defined(HAVE_OPENSSL_CSPRNG)
|
||||
typedef void *SSL;
|
||||
#endif
|
||||
#ifdef USE_CURL_FOR_IMAP_SEND
|
||||
#include "http.h"
|
||||
#endif
|
||||
@ -85,7 +82,11 @@ struct imap_server_conf {
|
||||
|
||||
struct imap_socket {
|
||||
int fd[2];
|
||||
#if defined(NO_OPENSSL) && !defined(HAVE_OPENSSL_CSPRNG)
|
||||
void *ssl;
|
||||
#else
|
||||
SSL *ssl;
|
||||
#endif
|
||||
};
|
||||
|
||||
struct imap_buffer {
|
||||
|
Reference in New Issue
Block a user