Browse Source

Merge branch 'maint-0.3.4' into maint-0.3.5

Nick Mathewson 5 years ago
parent
commit
896d0ebb99
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/tls/tortls_openssl.c

+ 1 - 1
src/lib/tls/tortls_openssl.c

@@ -650,7 +650,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;
   }