aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-http-stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-http-stream.c')
-rw-r--r--camel/camel-http-stream.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/camel/camel-http-stream.c b/camel/camel-http-stream.c
index 9c1a5a10f0..e0cdaba430 100644
--- a/camel/camel-http-stream.c
+++ b/camel/camel-http-stream.c
@@ -34,12 +34,9 @@
#include "camel-http-stream.h"
#include "camel-stream-buffer.h"
#include "camel-tcp-stream-raw.h"
-#ifdef HAVE_NSS
+#ifdef HAVE_SSL
#include "camel-tcp-stream-ssl.h"
#endif
-#ifdef HAVE_OPENSSL
-#include "camel-tcp-stream-openssl.h"
-#endif
#include "camel-exception.h"
#include "camel-session.h"
@@ -182,13 +179,9 @@ http_connect (CamelService *service, CamelURL *url)
int errsave;
if (!strcasecmp (url->protocol, "https")) {
-#ifdef HAVE_NSS
+#ifdef HAVE_SSL
stream = camel_tcp_stream_ssl_new (service, url->host);
-#else
-#ifdef HAVE_OPENSSL
- stream = camel_tcp_stream_openssl_new (service, url->host);
-#endif /* HAVE_OPENSSL */
-#endif /* HAVE_NSS */
+#endif
} else {
stream = camel_tcp_stream_raw_new ();
}