From: Nick Mathewson Date: Wed, 5 Sep 2018 13:36:15 +0000 (-0400) Subject: Fix a type, and hopefully the win64 builds. X-Git-Tag: tor-0.3.5.1-alpha~86 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=824160fd827ddacb3b030952c516e10a03671d4b;p=thirdparty%2Ftor.git Fix a type, and hopefully the win64 builds. --- diff --git a/src/lib/tls/tortls_openssl.c b/src/lib/tls/tortls_openssl.c index 5b1cdeec04..560a951bc0 100644 --- a/src/lib/tls/tortls_openssl.c +++ b/src/lib/tls/tortls_openssl.c @@ -1007,7 +1007,7 @@ tor_tls_setup_session_secret_cb(tor_tls_t *tls) * determine whether it is functioning as a server. */ tor_tls_t * -tor_tls_new(int sock, int isServer) +tor_tls_new(tor_socket_t sock, int isServer) { BIO *bio = NULL; tor_tls_t *result = tor_malloc_zero(sizeof(tor_tls_t));