[tor-commits] [tor/master] mark a variable unused to fix a warning.

nickm at torproject.org nickm at torproject.org
Fri Dec 18 18:16:44 UTC 2015


commit 14c9b9905180a21b8aa648b642ff5d3f7d86e29f
Author: Nick Mathewson <nickm at torproject.org>
Date:   Fri Dec 18 13:16:40 2015 -0500

    mark a variable unused to fix a warning.
---
 src/common/tortls.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/src/common/tortls.c b/src/common/tortls.c
index 14c283d..78f731b 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -1310,6 +1310,7 @@ find_cipher_by_id(const SSL *ssl, const SSL_METHOD *m, uint16_t cipher)
 {
   const SSL_CIPHER *c;
 #ifdef HAVE_SSL_CIPHER_FIND
+  (void) m;
   {
     unsigned char cipherid[3];
     tor_assert(ssl);



More information about the tor-commits mailing list