]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a type, and hopefully the win64 builds.
authorNick Mathewson <nickm@torproject.org>
Wed, 5 Sep 2018 13:36:15 +0000 (09:36 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 5 Sep 2018 13:36:15 +0000 (09:36 -0400)
src/lib/tls/tortls_openssl.c

index 5b1cdeec041bf7765aee3098fd7bf012127298a6..560a951bc0878c5c8421c218cee8170ba2e131c9 100644 (file)
@@ -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));