summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2003-11-16 19:40:04 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2003-11-16 19:40:04 +0000
commit07642119986c5b951656d9ebb844940b877298df (patch)
treeb2ca784e5bd7bed57c481062e1f3a6a5fc07ca3d /src/core
parentd79cc02a10a0426c9dedd783b634ad7d311f5741 (diff)
downloadirssi-07642119986c5b951656d9ebb844940b877298df.zip
compile fix if there's no openssl
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3154 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core')
-rw-r--r--src/core/network-openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/network-openssl.c b/src/core/network-openssl.c
index e8100b7c..2304ef4e 100644
--- a/src/core/network-openssl.c
+++ b/src/core/network-openssl.c
@@ -548,7 +548,7 @@ GIOChannel *net_connect_ip_ssl(IPADDR *ip, int port, IPADDR *my_ip, const char *
#else /* HAVE_OPENSSL */
-GIOChannel *net_connect_ip_ssl(IPADDR *ip, int port, IPADDR *my_ip)
+GIOChannel *net_connect_ip_ssl(IPADDR *ip, int port, IPADDR *my_ip, const char *cert, const char *pkey, const char *cafile, const char *capath, gboolean verify)
{
g_warning("Connection failed: SSL support not enabled in this build.");
errno = ENOSYS;