From 7e58901d8acda68f8155cda54b0fd3cb6d45f0da Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 11 Jun 2008 20:16:47 +0200 Subject: [PATCH] Fixed #if ENABLE_SSL for ssl_check_error --- src/tcpip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tcpip.c b/src/tcpip.c index 6cb4bbe..8781cca 100644 --- a/src/tcpip.c +++ b/src/tcpip.c @@ -264,7 +264,7 @@ COMSTACK ssl_type(int s, int flags, int protocol, void *vp) #endif } -#if !ENABLE_SSL +#if ENABLE_SSL static int ssl_check_error(COMSTACK h, tcpip_state *sp, int res) { #if HAVE_OPENSSL_SSL_H -- 1.7.10.4