tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 93b6d4137491cffc906e34dcd3cd4d284ad89e2f
parent d0c3723c38e0dba2ec1474c1c3ed75c6d0a7099f
Author: Nick Mathewson <nickm@torproject.org>
Date:   Sun, 11 Nov 2018 18:05:45 -0500

Merge branch 'maint-0.2.9' into maint-0.3.3

Diffstat:
Msrc/common/tortls.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/tortls.c b/src/common/tortls.c @@ -1274,7 +1274,7 @@ tor_tls_context_new(crypto_pk_t *identity, unsigned int key_lifetime, list = "P-256:P-224"; else list = "P-256:P-224"; - int r = SSL_CTX_set1_groups_list(result->ctx, list); + int r = (int) SSL_CTX_set1_groups_list(result->ctx, list); if (r < 0) goto error; }