Re: [PATCH] wininet: TLS fallback mechanism (take2)
29 Oct
2012
29 Oct
'12
5:11 p.m.
Hiroshi Miura <miurahr(a)linux.com> writes:
+#ifdef SONAME_LIBSSL + /* can't connect if we are already connected */ + if (connection->ssl_s) + { + ERR("already connected\n"); + return ERROR_INTERNET_CANNOT_CONNECT; + } + + /* connect with given TLS options */ + res = netcon_secure_connect_setup(connection, get_tls_option()); + if (res == ERROR_SUCCESS) + return res;
You missed some #ifdefs, this won't compile. -- Alexandre Julliard julliard(a)winehq.org
4791
Age (days ago)
4791
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard