I think maybe http_ssl needs an extra set of parentheses to deal with
this:

./src/http_ssl.c: In function 'ssl_open':
./src/http_ssl.c:288: warning: cast to pointer from integer of different size

-- 
James Turner
Index: src/http_ssl.c
==================================================================
--- src/http_ssl.c
+++ src/http_ssl.c
@@ -283,11 +283,11 @@
     return 1;
   }
   BIO_get_ssl(iBio, &ssl);
 
 #if (SSLEAY_VERSION_NUMBER >= 0x00908070) && !defined(OPENSSL_NO_TLSEXT)
-  if( !SSL_set_tlsext_host_name(ssl, 
pUrlData->useProxy?pUrlData->hostname:pUrlData->name) ){
+  if( !SSL_set_tlsext_host_name(ssl, 
(pUrlData->useProxy?pUrlData->hostname:pUrlData->name)) ){
     fossil_warning("WARNING: failed to set server name indication (SNI), "
                   "continuing without it.\n");
   }
 #endif
 

_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to