From 4ba952503e20bb6a2ced1e4f64b7df184333a8f6 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 22 Sep 2003 15:00:59 +0000 Subject: Fix the code that creates a new ssl stream to pass the correct arguments 2003-09-22 Jeffrey Stedfast * providers/nntp/camel-nntp-store.c (connect_to_server): Fix the code that creates a new ssl stream to pass the correct arguments and the proper flags. * providers/imapp/camel-imapp-folder.c (imap_sync): Cast the CamelFolder to a CamelIMAPPFolder to hush some compiler warnings. * camel-mime-utils.h: Define a struct _CamelContentDisposition (allows the imapp code to compile) * providers/imapp/camel-imapp-driver.c: #include svn path=/trunk/; revision=22635 --- camel/providers/nntp/camel-nntp-store.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'camel/providers/nntp/camel-nntp-store.c') diff --git a/camel/providers/nntp/camel-nntp-store.c b/camel/providers/nntp/camel-nntp-store.c index a04857e8df..531d4aefdf 100644 --- a/camel/providers/nntp/camel-nntp-store.c +++ b/camel/providers/nntp/camel-nntp-store.c @@ -35,7 +35,7 @@ #include #include -#include +#include #include #include #include @@ -112,7 +112,7 @@ connect_to_server (CamelService *service, int ssl_mode, CamelException *ex) #ifdef HAVE_SSL if (ssl_mode != USE_SSL_NEVER) { port = service->url->port ? service->url->port : NNTPS_PORT; - tcp_stream = camel_tcp_stream_ssl_new (service, service->url->host); + tcp_stream = camel_tcp_stream_ssl_new (service->session, service->url->host, CAMEL_TCP_STREAM_SSL_ENABLE_SSL2 | CAMEL_TCP_STREAM_SSL_ENABLE_SSL3); } else { tcp_stream = camel_tcp_stream_raw_new (); } -- cgit v1.2.3