From 8256a5628dfda90181ccc97dd0a1fb711d5b47bb Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Tue, 9 Jun 2009 15:43:56 +0000 Subject: [PATCH] fixed typo when using TORRENT_USE_OPENSSL --- src/http_connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http_connection.cpp b/src/http_connection.cpp index cd28ab060..a5010319a 100644 --- a/src/http_connection.cpp +++ b/src/http_connection.cpp @@ -66,7 +66,7 @@ void http_connection::get(std::string const& url, time_duration timeout, int pri int default_port = protocol == "https" ? 443 : 80; if (protocol != "http" -#ifndef TORRENT_USE_OPENSSL +#ifdef TORRENT_USE_OPENSSL && protocol != "https" #endif )